diff --git a/scripts/blt/examples/Test/ExampleTest.php b/scripts/blt/examples/Test/ExampleTest.php deleted file mode 100644 index 1e0017e7e..000000000 --- a/scripts/blt/examples/Test/ExampleTest.php +++ /dev/null @@ -1,19 +0,0 @@ -assertEquals(1, 1, "One equals one!"); - } - -} diff --git a/src/Robo/Commands/Recipes/PhpUnitCommand.php b/src/Robo/Commands/Recipes/PhpUnitCommand.php deleted file mode 100644 index 91b2aa013..000000000 --- a/src/Robo/Commands/Recipes/PhpUnitCommand.php +++ /dev/null @@ -1,42 +0,0 @@ -taskFilesystemStack() - ->copy( - $this->getConfigValue('blt.root') . '/scripts/blt/examples/Test/ExampleTest.php', - $this->getConfigValue('repo.root') . '/tests/phpunit/ExampleTest.php', FALSE) - ->stopOnFail() - ->setVerbosityThreshold(VerbosityThresholdInterface::VERBOSITY_VERBOSE) - ->run(); - - if (!$result->wasSuccessful()) { - throw new BltException("Could not copy example files into the repository root."); - } - - $this->taskExec("composer require --dev --no-update phpunit/phpunit:'^4.8.35 || ^6.5 || ^7'") - ->run(); - $this->taskExec("composer update") - ->run(); - - $this->say("Example PHPUnit files were copied to your application."); - } - -}