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

testAssertEmptyFalse() public method

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