Platformsh\Cli\Tests\FilesystemHelperTest::testCopyAll PHP Метод

testCopyAll() публичный Метод

Test FilesystemHelper::copyAll().
public testCopyAll ( )
    public function testCopyAll()
    {
        $source = $this->tempDir(true);
        $destination = $this->tempDir();
        touch($source . '/.donotcopy');
        // Copy files.
        $this->filesystemHelper->copyAll($source, $destination, ['.*']);
        // Check that they have been copied.
        $this->assertFileExists($destination . '/test-file');
        $this->assertFileExists($destination . '/test-dir/test-file');
        $this->assertFileNotExists($destination . '/.donotcopy');
    }