From 9a5d5705cd1947f551d35514a3f0e2550e511111 Mon Sep 17 00:00:00 2001 From: nojimage Date: Mon, 8 Aug 2016 20:13:40 +0900 Subject: [PATCH] TestShell support --coverage-text option --- lib/Cake/Console/Command/TestShell.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Cake/Console/Command/TestShell.php b/lib/Cake/Console/Command/TestShell.php index 4c8db6234fb..29eca27211f 100644 --- a/lib/Cake/Console/Command/TestShell.php +++ b/lib/Cake/Console/Command/TestShell.php @@ -71,6 +71,9 @@ public function getOptionParser() { ))->addOption('coverage-clover', array( 'help' => __d('cake_console', ' Write code coverage data in Clover XML format.'), 'default' => false + ))->addOption('coverage-text', array( + 'help' => __d('cake_console', 'Output code coverage report in Text format.'), + 'boolean' => true ))->addOption('testdox-html', array( 'help' => __d('cake_console', ' Write agile documentation in HTML format to file.'), 'default' => false