diff options
Diffstat (limited to 'main/app/system/Bakery/Command/Test.php')
-rw-r--r-- | main/app/system/Bakery/Command/Test.php | 108 |
1 files changed, 54 insertions, 54 deletions
diff --git a/main/app/system/Bakery/Command/Test.php b/main/app/system/Bakery/Command/Test.php index dde187f..9f760b5 100644 --- a/main/app/system/Bakery/Command/Test.php +++ b/main/app/system/Bakery/Command/Test.php @@ -1,55 +1,55 @@ -<?php -/** - * UserFrosting (http://www.userfrosting.com) - * - * @link https://github.com/userfrosting/UserFrosting - * @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License) - */ - -namespace UserFrosting\System\Bakery\Command; - -use Symfony\Component\Console\Input\InputInterface; -use Symfony\Component\Console\Output\OutputInterface; -use Symfony\Component\Console\Input\InputArgument; -use Symfony\Component\Console\Input\InputOption; -use UserFrosting\System\Bakery\BaseCommand; - -/** - * Automated testing CLI tool. - * Sets up environment and runs PHPUnit tests in each Sprinkle. - * - * @author Alex Weissman (https://alexanderweissman.com) - */ -class Test extends BaseCommand -{ - /** - * @var string Path to the build/ directory - */ - protected $buildPath; - - /** - * {@inheritDoc} - */ - protected function configure() { - $this->setName("test") - ->setDescription("Run tests") - ->setHelp("Run php unit tests"); - } - - /** - * {@inheritDoc} - */ - protected function execute(InputInterface $input, OutputInterface $output) { - $this->io->title("UserFrosting's Tester"); - - // Get command - $command = \UserFrosting\VENDOR_DIR . "/bin/phpunit --colors=always"; - if ($output->isVerbose() || $output->isVeryVerbose()) { - $command .= " -v"; - } - - // Execute - $this->io->writeln("> <comment>$command</comment>"); - passthru($command); - } +<?php
+/**
+ * UserFrosting (http://www.userfrosting.com)
+ *
+ * @link https://github.com/userfrosting/UserFrosting
+ * @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
+ */
+
+namespace UserFrosting\System\Bakery\Command;
+
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputOption;
+use UserFrosting\System\Bakery\BaseCommand;
+
+/**
+ * Automated testing CLI tool.
+ * Sets up environment and runs PHPUnit tests in each Sprinkle.
+ *
+ * @author Alex Weissman (https://alexanderweissman.com)
+ */
+class Test extends BaseCommand
+{
+ /**
+ * @var string Path to the build/ directory
+ */
+ protected $buildPath;
+
+ /**
+ * {@inheritDoc}
+ */
+ protected function configure() {
+ $this->setName("test")
+ ->setDescription("Run tests")
+ ->setHelp("Run php unit tests");
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ protected function execute(InputInterface $input, OutputInterface $output) {
+ $this->io->title("UserFrosting's Tester");
+
+ // Get command
+ $command = \UserFrosting\VENDOR_DIR . "/bin/phpunit --colors=always";
+ if ($output->isVerbose() || $output->isVeryVerbose()) {
+ $command .= " -v";
+ }
+
+ // Execute
+ $this->io->writeln("> <comment>$command</comment>");
+ passthru($command);
+ }
}
\ No newline at end of file |