From 2aa6291a814213af7356fce429a57ecacb5327b1 Mon Sep 17 00:00:00 2001 From: Jakub Zverina Date: Wed, 3 Jun 2015 14:59:37 +0200 Subject: [PATCH] #12 correct naming conventions --- src/Console/Command/RunTestsCommand.php | 2 +- src/Process/ProcessSetCreator.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Console/Command/RunTestsCommand.php b/src/Console/Command/RunTestsCommand.php index 42276406..fc0380ad 100644 --- a/src/Console/Command/RunTestsCommand.php +++ b/src/Console/Command/RunTestsCommand.php @@ -126,7 +126,7 @@ protected function configure() self::OPTION_FILTER, null, InputOption::VALUE_REQUIRED, - 'Run only test cases matching this filter' + 'Run only tests whose name is matching this filter' ) ->addOption( self::OPTION_EXCLUDE_GROUP, diff --git a/src/Process/ProcessSetCreator.php b/src/Process/ProcessSetCreator.php index 5231b483..cf3d2e8c 100644 --- a/src/Process/ProcessSetCreator.php +++ b/src/Process/ProcessSetCreator.php @@ -69,7 +69,7 @@ public function createFromFiles(Finder $files, array $groups = null, array $excl $this->output->writeln(sprintf(' - excluding group(s): %s', implode(', ', $excludeGroups))); } if ($filter) { - $this->output->writeln(sprintf(' - filtering test cases by name: %s', $filter)); + $this->output->writeln(sprintf(' - filtering tests by name: %s', $filter)); } $processSet = $this->getProcessSet();