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

testAssertEmptyTrue() public method

public testAssertEmptyTrue ( )
    public function testAssertEmptyTrue()
    {
        $this->assertTrue($this->test->assertEmpty(array()));
        $results = $this->test->results();
        $result = array_pop($results);
        $this->assertEqual('pass', $result['result']);
    }
UnitTest