From 3c27ef31f49095220d0ac6981c7f33ccfb6c930b Mon Sep 17 00:00:00 2001 From: tmont Date: Wed, 1 Jul 2009 07:27:04 +0000 Subject: [PATCH] corrected switch description --- src/Testify/util/entry_console.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Testify/util/entry_console.php b/src/Testify/util/entry_console.php index ddb238f..f4764aa 100644 --- a/src/Testify/util/entry_console.php +++ b/src/Testify/util/entry_console.php @@ -48,7 +48,7 @@ ->addSwitch(new CliSwitch('usage', null, false, null, 'Display this help message')) ->addSwitch(new CliSwitch('recursive', null, false, null, 'Recurse into subdirectories')) ->addSwitch(new CliSwitch('bootstrap', 'b', false, 'file', 'File to include before tests are run')) - ->addSwitch(new CliSwitch('coverage-html', null, false, 'dir', 'Generate code coverage report in HTML (requires xdebug, optionally uses ezComponents)')) + ->addSwitch(new CliSwitch('coverage-html', null, false, 'dir', 'Generate code coverage report in HTML (requires xdebug)')) ->addSwitch(new CliSwitch('coverage-renderer', null, false, 'type', 'Use with coverage-html to render code coverage graphs; png is the only type supported right now')) ->addSwitch(new CliSwitch('coverage-console', null, false, null, 'Generate code coverage report suitable for console viewing'));