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

testAssertCountTrue() public method

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