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

testAssertNotEmptyTrue() public method

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