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

testAssertStringStartsWithTrue() public method

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