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

testAssertTagsString() public method

    public function testAssertTagsString()
    {
        $result = '<span>ok</span>';
        $this->test->assertTags($result, array('<span'));
        $results = $this->test->results();
        $expected = 'pass';
        $this->assertEqual($expected, $results[0]['result']);
    }
UnitTest