2009-03-13 16:06:18 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-03-18 17:55:58 +00:00
|
|
|
* ConsoleGroupTest file
|
2009-03-13 16:06:18 +00:00
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
2010-01-26 19:18:20 +00:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-03-13 16:06:18 +00:00
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-01-26 19:18:20 +00:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-03-13 16:06:18 +00:00
|
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
2009-03-18 17:55:58 +00:00
|
|
|
* @package cake
|
2009-03-13 16:06:18 +00:00
|
|
|
* @subpackage cake.tests.groups
|
|
|
|
* @since CakePHP(tm) v 1.2.0.4206
|
|
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-03-13 16:06:18 +00:00
|
|
|
/**
|
2009-03-21 23:55:39 +00:00
|
|
|
* ConsoleGroupTest class
|
2009-03-13 16:06:18 +00:00
|
|
|
*
|
2009-03-18 17:55:58 +00:00
|
|
|
* This test group will run all console tests
|
|
|
|
*
|
2009-03-13 16:06:18 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.groups
|
|
|
|
*/
|
2009-09-12 01:43:53 +00:00
|
|
|
class ConsoleGroupTest extends TestSuite {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-03-13 16:06:18 +00:00
|
|
|
/**
|
|
|
|
* label property
|
|
|
|
*
|
|
|
|
* @var string 'All core cache engines'
|
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $label = 'ShellDispatcher, Shell and all Tasks';
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-03-13 16:06:18 +00:00
|
|
|
/**
|
2009-03-21 23:55:39 +00:00
|
|
|
* ConsoleGroupTest method
|
2009-03-13 16:06:18 +00:00
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2009-03-21 23:55:39 +00:00
|
|
|
function ConsoleGroupTest() {
|
2009-11-01 17:31:41 +00:00
|
|
|
TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'console' . DS . 'cake');
|
|
|
|
TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'console' . DS . 'libs' . DS . 'acl');
|
|
|
|
TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'console' . DS . 'libs' . DS . 'api');
|
|
|
|
TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'console' . DS . 'libs' . DS . 'bake');
|
|
|
|
TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'console' . DS . 'libs' . DS . 'schema');
|
|
|
|
TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'console' . DS . 'libs' . DS . 'shell');
|
|
|
|
|
|
|
|
$path = CORE_TEST_CASES . DS . 'console' . DS . 'libs' . DS . 'tasks' . DS;
|
2009-11-13 15:24:36 +00:00
|
|
|
|
2009-11-01 17:31:41 +00:00
|
|
|
TestManager::addTestFile($this, $path . 'controller');
|
|
|
|
TestManager::addTestFile($this, $path . 'db_config');
|
2009-11-13 15:24:36 +00:00
|
|
|
TestManager::addTestFile($this, $path . 'extract');
|
|
|
|
TestManager::addTestFile($this, $path . 'fixture');
|
|
|
|
TestManager::addTestFile($this, $path . 'model');
|
2009-11-01 17:31:41 +00:00
|
|
|
TestManager::addTestFile($this, $path . 'plugin');
|
|
|
|
TestManager::addTestFile($this, $path . 'project');
|
2009-11-13 15:24:36 +00:00
|
|
|
TestManager::addTestFile($this, $path . 'test');
|
|
|
|
TestManager::addTestFile($this, $path . 'view');
|
2009-03-13 16:06:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|