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

testAssertStringEndsWithTrue() public method

    public function testAssertStringEndsWithTrue()
    {
        $this->assertTrue($this->test->assertStringEndsWith('bar', 'foobar'));
        $results = $this->test->results();
        $result = array_pop($results);
        $this->assertEqual('pass', $result['result']);
    }
UnitTest