%PDF- %PDF-
Direktori : /home/emtnaeewxm/www/vendor/sensio/generator-bundle/Tests/Generator/ |
Current File : /home/emtnaeewxm/www/vendor/sensio/generator-bundle/Tests/Generator/GeneratorTest.php |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Sensio\Bundle\GeneratorBundle\Tests\Generator; use Symfony\Component\Filesystem\Filesystem; abstract class GeneratorTest extends \PHPUnit_Framework_TestCase { protected $filesystem; protected $tmpDir; public function setUp() { $this->tmpDir = sys_get_temp_dir().'/sf'; $this->filesystem = new Filesystem(); $this->filesystem->remove($this->tmpDir); } public function tearDown() { $this->filesystem->remove($this->tmpDir); } }