2010-06-22 02:08:15 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* AllComponentsTest file
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-06-22 02:08:15 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-06-22 02:08:15 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-06-22 02:08:15 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case
|
2010-06-22 02:08:15 +00:00
|
|
|
* @since CakePHP(tm) v 2.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AllComponentsTest class
|
|
|
|
*
|
|
|
|
* This test group will run component class tests
|
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case
|
2010-06-22 02:08:15 +00:00
|
|
|
*/
|
|
|
|
class AllComponentsTest extends PHPUnit_Framework_TestSuite {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* suite method, defines tests for this suite.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function suite() {
|
2010-09-25 04:13:37 +00:00
|
|
|
$suite = new CakeTestSuite('All component class tests');
|
2010-07-31 20:21:00 +00:00
|
|
|
|
2011-04-12 02:53:44 +00:00
|
|
|
$suite->addTestFile(CORE_TEST_CASES . DS . 'Controller' . DS . 'ComponentTest.php');
|
|
|
|
$suite->addTestFile(CORE_TEST_CASES . DS . 'Controller' . DS . 'ComponentCollectionTest.php');
|
2011-08-27 14:34:08 +00:00
|
|
|
$suite->addTestDirectoryRecursive(CORE_TEST_CASES . DS . 'Controller' . DS . 'Component');
|
2010-06-22 02:08:15 +00:00
|
|
|
return $suite;
|
|
|
|
}
|
|
|
|
}
|