Adding ConsoleOptionParser to the AllShells test.

This commit is contained in:
mark_story 2010-10-09 12:49:59 -04:00
parent 733394d584
commit 0eb68226ce

View file

@ -41,6 +41,7 @@ class AllShellsTest extends PHPUnit_Framework_TestSuite {
$suite->addTestFile(CORE_TEST_CASES . DS . 'console' . DS . 'shell_dispatcher.test.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'console' . DS . 'console_output.test.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'console' . DS . 'console_error_handler.test.php');
$suite->addTestFile(CORE_TEST_CASES . DS . 'console' . DS . 'console_option_parser.test.php');
$suite->addTestDirectory($path);
return $suite;
}