lithium\tests\cases\test\UnitTest::testAssertTags PHP Method

testAssertTags() public method

public testAssertTags ( )
    public function testAssertTags()
    {
        $result = '<input id="test">';
        $this->test->assertTags($result, array('input' => array('id' => 'test')));
        $results = $this->test->results();
        $expected = 'pass';
        $this->assertEqual($expected, $results[0]['result']);
    }
UnitTest