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

testAssertNotEmptyFalse() public method

    public function testAssertNotEmptyFalse()
    {
        $this->assertFalse($this->test->assertNotEmpty(array()));
        $results = $this->test->results();
        $result = array_pop($results);
        $this->assertEqual('fail', $result['result']);
        $this->assertEqual(array('expected' => array(), 'result' => false), $result['data']);
    }
UnitTest