public function ClassMapGeneratorTest::testDump in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/class-loader/Tests/ClassMapGeneratorTest.php \Symfony\Component\ClassLoader\Tests\ClassMapGeneratorTest::testDump()
@dataProvider getTestCreateMapTests
File
- vendor/
symfony/ class-loader/ Tests/ ClassMapGeneratorTest.php, line 50
Class
Namespace
Symfony\Component\ClassLoader\TestsCode
public function testDump($directory) {
$this
->prepare_workspace();
$file = $this->workspace . '/file';
$generator = new ClassMapGenerator();
$generator
->dump($directory, $file);
$this
->assertFileExists($file);
$this
->clean($this->workspace);
}