Browse Source

Adding the --debug flag that later versions of PHPUnit support.

mark_story 14 years ago
parent
commit
f060fdafb7
1 changed files with 2 additions and 0 deletions
  1. 2 0
      lib/Cake/Console/Command/TestsuiteShell.php

+ 2 - 0
lib/Cake/Console/Command/TestsuiteShell.php

@@ -156,6 +156,8 @@ class TestsuiteShell extends Shell {
 			'default' => false
 		))->addOption('fixture', array(
 			'help' => __d('cake_console', 'Choose a custom fixture manager.'),
+		))->addOption('debug', array(
+			'help' => __d('cake_console', 'More verbose output.'),
 		));
 
 		return $parser;