5 * Run all the test cases related to bake.
9 * CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
10 * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
12 * Licensed under The Open Group Test Suite License
13 * Redistributions of files must retain the above copyright notice.
15 * @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
16 * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
18 * @subpackage cake.tests.groups
19 * @since CakePHP(tm) v 1.3
20 * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
26 * This test group will run all bake tests
29 * @subpackage cake.tests.groups
31 class BakeGroupTest
extends TestSuite
{
36 * @var string 'All core cache engines'
39 var $label = 'All Tasks related to bake.';
42 * BakeGroupTest method
47 function BakeGroupTest() {
48 $path = CORE_TEST_CASES
. DS
. 'console' . DS
. 'libs' . DS
. 'tasks' . DS
;
49 TestManager
::addTestFile($this, CORE_TEST_CASES
. DS
. 'console' . DS
. 'libs' . DS
. 'bake');
50 TestManager
::addTestFile($this, $path . 'controller');
51 TestManager
::addTestFile($this, $path . 'model');
52 TestManager
::addTestFile($this, $path . 'view');
53 TestManager
::addTestFile($this, $path . 'fixture');
54 TestManager
::addTestFile($this, $path . 'test');
55 TestManager
::addTestFile($this, $path . 'db_config');
56 TestManager
::addTestFile($this, $path . 'plugin');
57 TestManager
::addTestFile($this, $path . 'project');