From 9e377b5d2b8d35d46397802a0ab3a28bf34ce21d Mon Sep 17 00:00:00 2001 From: Jitendra Adhikari Date: Thu, 23 Aug 2018 18:54:57 +0700 Subject: [PATCH] fix(testcmd): show options for test naming --- src/Console/TestCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/TestCommand.php b/src/Console/TestCommand.php index 238eb4b..b627f57 100644 --- a/src/Console/TestCommand.php +++ b/src/Console/TestCommand.php @@ -38,7 +38,7 @@ protected function onConstruct() $this ->option('-t --no-teardown', 'Dont add teardown method') ->option('-s --no-setup', 'Dont add setup method') - ->option('-n --naming', 'Test method naming format') + ->option('-n --naming', "Test method naming format\n(t: testMethod | m: test_method | i: it_tests_)") ->option('-a --with-abstract', 'Create stub for abstract/interface class') ->option('-p --phpunit [classFqcn]', 'Base PHPUnit class to extend from') ->option('-d --dump-autoload', 'Force composer dumpautoload (slow)', null, false)