123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
-
-
-
- namespace JMS\DiExtraBundle\Tests\Functional;
-
- use Symfony\Component\Filesystem\Filesystem;
-
- use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
-
- class BaseTestCase extends WebTestCase
- {
- static protected function createKernel(array $options = array())
- {
- return new AppKernel(
- isset($options['config']) ? $options['config'] : 'default.yml',
- isset($options['debug']) ? (boolean) $options['debug'] : true
- );
- }
-
- protected function tearDown()
- {
- $this->cleanTmpDir();
- }
-
- protected function setUp()
- {
- $this->cleanTmpDir();
- }
-
- private function cleanTmpDir()
- {
- $fs = new Filesystem();
- $fs->remove(sys_get_temp_dir().'/JMSDiExtraBundle');
- }
- }
|