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

testAssertFileNotExistsTrue() public method

    public function testAssertFileNotExistsTrue()
    {
        $file1 = __DIR__ . '/does/not/exist.txt';
        $this->assertTrue($this->test->assertFileNotExists($file1));
        $results = $this->test->results();
        $result = array_pop($results);
        $this->assertEqual('pass', $result['result']);
    }
UnitTest