2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-03-21 23:55:39 +00:00
|
|
|
* HelpersGroupTest file
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2017-06-10 21:33:55 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
2017-06-10 22:10:52 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-06-13 14:14:28 +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-13 14:14:28 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2017-06-10 22:10:52 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2017-06-10 21:33:55 +00:00
|
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case
|
2010-06-22 01:48:23 +00:00
|
|
|
* @since CakePHP(tm) v 2.0
|
2017-06-10 22:23:14 +00:00
|
|
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2009-03-21 23:55:39 +00:00
|
|
|
* HelpersGroupTest class
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2011-10-10 21:18:48 +00:00
|
|
|
* This test group will run all Helper related tests.
|
2009-03-18 17:55:58 +00:00
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case
|
2008-06-02 19:22:55 +00:00
|
|
|
*/
|
2022-12-28 06:46:06 +00:00
|
|
|
class AllHelpersTest extends \PHPUnit\Framework\TestSuite {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2010-06-13 14:09:48 +00:00
|
|
|
* suite declares tests to run
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2010-06-13 03:53:14 +00:00
|
|
|
public static function suite() {
|
2010-09-25 04:13:37 +00:00
|
|
|
$suite = new CakeTestSuite('All Helper tests');
|
2010-06-13 03:32:01 +00:00
|
|
|
|
2011-04-12 02:53:44 +00:00
|
|
|
$suite->addTestFile(CORE_TEST_CASES . DS . 'View' . DS . 'HelperTest.php');
|
|
|
|
$suite->addTestFile(CORE_TEST_CASES . DS . 'View' . DS . 'HelperCollectionTest.php');
|
|
|
|
$suite->addTestDirectory(CORE_TEST_CASES . DS . 'View' . DS . 'Helper' . DS);
|
2010-06-13 03:53:14 +00:00
|
|
|
return $suite;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|