public function FileTest::testMove in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Tests/File/FileTest.php \Symfony\Component\HttpFoundation\Tests\File\FileTest::testMove()
File
- vendor/
symfony/ http-foundation/ Tests/ File/ FileTest.php, line 71
Class
Namespace
Symfony\Component\HttpFoundation\Tests\FileCode
public function testMove() {
$path = __DIR__ . '/Fixtures/test.copy.gif';
$targetDir = __DIR__ . '/Fixtures/directory';
$targetPath = $targetDir . '/test.copy.gif';
@unlink($path);
@unlink($targetPath);
copy(__DIR__ . '/Fixtures/test.gif', $path);
$file = new File($path);
$movedFile = $file
->move($targetDir);
$this
->assertInstanceOf('Symfony\\Component\\HttpFoundation\\File\\File', $movedFile);
$this
->assertTrue(file_exists($targetPath));
$this
->assertFalse(file_exists($path));
$this
->assertEquals(realpath($targetPath), $movedFile
->getRealPath());
@unlink($targetPath);
}