diff --git a/cake/tests/groups/configure.group.php b/cake/tests/groups/configure.group.php new file mode 100644 index 000000000..fc8561f31 --- /dev/null +++ b/cake/tests/groups/configure.group.php @@ -0,0 +1,45 @@ + + * Copyright 2005-2007, Cake Software Foundation, Inc. + * 1785 E. Sahara Avenue, Suite 490-204 + * Las Vegas, Nevada 89104 + * + * Licensed under The Open Group Test Suite License + * Redistributions of files must retain the above copyright notice. + * + * @filesource + * @copyright Copyright 2005-2007, Cake Software Foundation, Inc. + * @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests + * @package cake.tests + * @subpackage cake.tests.groups + * @since CakePHP(tm) v 1.2.0.4206 + * @version $Revision$ + * @modifiedby $LastChangedBy$ + * @lastmodified $Date$ + * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License + */ +/** ConfigureGroupTest + * + * This test group will run all test for the configure and loader. + * + * @package cake.tests + * @subpackage cake.tests.groups + */ +class ConfigureGroupTest extends GroupTest { + + var $label = 'Configure and Loader Tests'; + + function ConfigureGroupTest() { + TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'configure'); + TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'loader'); + } +} +?> \ No newline at end of file diff --git a/cake/tests/groups/view.group.php b/cake/tests/groups/view.group.php index ea3a11cd7..67bd709ac 100644 --- a/cake/tests/groups/view.group.php +++ b/cake/tests/groups/view.group.php @@ -26,9 +26,9 @@ * @lastmodified $Date$ * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License */ -/** AllCoreHelpersGroupTest +/** AllCoreViewsGroupTest * - * This test group will run all test in the cases/libs/view/helpers directory. + * This test group will run view class tests (view, theme). * * @package cake.tests * @subpackage cake.tests.groups @@ -38,8 +38,8 @@ class AllCoreViewsGroupTest extends GroupTest { var $label = 'All core views'; function AllCoreViewsGroupTest() { - TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'view', - CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'theme'); + TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'view'); + TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'theme'); } } ?> \ No newline at end of file