From 42e864f3f5f8fe5bfbdbac66dc2e4b95159fedcb Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Fri, 13 Sep 2019 22:19:06 +1000 Subject: [PATCH] remove testing bootstrap extension (#5107) --- phpunit.xml | 8 -------- tests/Bootstrap.php | 42 ------------------------------------------ 2 files changed, 50 deletions(-) delete mode 100644 tests/Bootstrap.php diff --git a/phpunit.xml b/phpunit.xml index 61b6b64b7..da4add307 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -22,9 +22,6 @@ ./app - - - @@ -32,10 +29,5 @@ - - - - - diff --git a/tests/Bootstrap.php b/tests/Bootstrap.php deleted file mode 100644 index 5fa7829c6..000000000 --- a/tests/Bootstrap.php +++ /dev/null @@ -1,42 +0,0 @@ -createApplication()->make(Kernel::class); - - $commands = [ - 'config:cache', - 'event:cache', - ]; - - foreach ($commands as $command) { - $console->call($command); - } - } - - public function executeAfterLastTest(): void - { - array_map('unlink', glob('bootstrap/cache/*.phpunit.php')); - } -}