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

testCopyFileNotFound() public method

    public function testCopyFileNotFound()
    {
        $file3 = $this->fixtures . '/file3.txt';
        $this->assertFalse($this->file->exists($file3));
        $this->assertFalse($this->file->copy($file3, $this->workspace . '/file3.txt'));
    }