2010-09-19 05:44:49 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* AllTests file
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2011-05-29 21:31:39 +00:00
|
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-09-19 05:44:49 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2011-05-29 21:31:39 +00:00
|
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-09-19 05:44:49 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-04-12 02:53:44 +00:00
|
|
|
* @package cakeTests.cases
|
2010-09-19 05:44:49 +00:00
|
|
|
* @since CakePHP(tm) v 2.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* AllTests class
|
|
|
|
*
|
|
|
|
* This test group will run all test in the cases/libs/models/behaviors directory
|
|
|
|
*
|
2011-04-12 02:53:44 +00:00
|
|
|
* @package cakeTests.groups
|
2010-09-19 05:44:49 +00:00
|
|
|
*/
|
|
|
|
class AllTests extends PHPUnit_Framework_TestSuite {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Suite define the tests for this suite
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function suite() {
|
|
|
|
$suite = new PHPUnit_Framework_TestSuite('All Tests');
|
|
|
|
|
2011-04-12 02:53:44 +00:00
|
|
|
$path = CORE_TEST_CASES . DS;
|
2010-09-21 03:42:35 +00:00
|
|
|
|
2011-04-23 00:23:38 +00:00
|
|
|
$suite->addTestFile($path . 'BasicsTest.php');
|
2011-04-22 16:01:33 +00:00
|
|
|
$suite->addTestFile($path . 'AllConsoleTest.php');
|
2011-04-12 02:53:44 +00:00
|
|
|
$suite->addTestFile($path . 'AllBehaviorsTest.php');
|
2011-04-22 16:01:33 +00:00
|
|
|
$suite->addTestFile($path . 'AllCacheTest.php');
|
2011-04-12 02:53:44 +00:00
|
|
|
$suite->addTestFile($path . 'AllComponentsTest.php');
|
|
|
|
$suite->addTestFile($path . 'AllConfigureTest.php');
|
2011-04-22 16:01:33 +00:00
|
|
|
$suite->addTestFile($path . 'AllCoreTest.php');
|
|
|
|
$suite->addTestFile($path . 'AllControllerTest.php');
|
2011-04-12 02:53:44 +00:00
|
|
|
$suite->addTestFile($path . 'AllDatabaseTest.php');
|
|
|
|
$suite->addTestFile($path . 'AllErrorTest.php');
|
|
|
|
$suite->addTestFile($path . 'AllHelpersTest.php');
|
2011-04-22 16:01:33 +00:00
|
|
|
$suite->addTestFile($path . 'AllLogTest.php');
|
|
|
|
$suite->addTestFile($path . 'AllI18nTest.php');
|
2011-04-12 02:53:44 +00:00
|
|
|
$suite->addTestFile($path . 'AllModelTest.php');
|
|
|
|
$suite->addTestFile($path . 'AllRoutingTest.php');
|
2011-04-22 16:01:33 +00:00
|
|
|
$suite->addTestFile($path . 'AllNetworkTest.php');
|
2011-04-12 02:53:44 +00:00
|
|
|
$suite->addTestFile($path . 'AllTestSuiteTest.php');;
|
2011-04-22 16:01:33 +00:00
|
|
|
$suite->addTestFile($path . 'AllUtilityTest.php');
|
|
|
|
$suite->addTestFile($path . 'AllViewTest.php');
|
2010-09-19 05:44:49 +00:00
|
|
|
return $suite;
|
|
|
|
}
|
|
|
|
}
|