Pagekit\Filesystem\Tests\FileTest::testCopyDirNotFound PHP Method

testCopyDirNotFound() public method

public testCopyDirNotFound ( )
    public function testCopyDirNotFound()
    {
        $dir = __DIR__ . '/Directory';
        $this->assertFalse($this->file->exists($dir));
        $this->assertFalse($this->file->copyDir($dir, $this->workspace));
    }