We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b9619c commit 0a3dc11Copy full SHA for 0a3dc11
src/Symfony/Component/HttpKernel/Tests/KernelTest.php
@@ -13,6 +13,7 @@
13
14
use PHPUnit\Framework\TestCase;
15
use Symfony\Component\DependencyInjection\ContainerBuilder;
16
+use Symfony\Component\Filesystem\Filesystem;
17
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
18
use Symfony\Component\HttpKernel\Config\EnvParametersResource;
19
use Symfony\Component\HttpKernel\Kernel;
@@ -25,6 +26,12 @@
25
26
27
class KernelTest extends TestCase
28
{
29
+ public static function tearDownAfterClass()
30
+ {
31
+ $fs = new Filesystem();
32
+ $fs->remove(__DIR__.'/Fixtures/cache');
33
+ }
34
+
35
public function testConstructor()
36
37
$env = 'test_env';
0 commit comments