8000
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 592cad8Copy full SHA for 592cad8
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,11 @@
25
26
27
class KernelTest extends TestCase
28
{
29
+ public static function tearDownAfterClass()
30
+ {
31
+ (new Filesystem())->remove(__DIR__.'/Fixtures/cache');
32
+ }
33
+
34
public function testConstructor()
35
36
$env = 'test_env';
0 commit comments