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
|
|
|
*
|
2010-06-13 10:14:28 -04:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-06-13 10:14:28 -04:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-01-26 14:18:20 -05:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-06-13 10:14:28 -04:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-01-26 14:18:20 -05:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-06-13 10:14:28 -04:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2010-12-24 13:57:20 -05:00
|
|
|
* @package cake.tests.cases
|
2010-06-21 21:48:23 -04:00
|
|
|
* @since CakePHP(tm) v 2.0
|
2010-06-13 10:14:28 -04:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 21:18:37 +02: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
|
|
|
*
|
2009-03-18 17:55:58 +00:00
|
|
|
* This test group will run all test in the cases/libs/view/helpers directory.
|
|
|
|
*
|
2010-12-24 13:57:20 -05:00
|
|
|
* @package cake.tests.groups
|
2008-06-02 19:22:55 +00:00
|
|
|
*/
|
2010-06-13 00:01:47 -04:00
|
|
|
class AllHelpersTest extends PHPUnit_Framework_TestSuite {
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2010-06-13 10:09:48 -04:00
|
|
|
* suite declares tests to run
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-06-12 23:53:14 -04:00
|
|
|
public static function suite() {
|
2010-09-25 00:13:37 -04:00
|
|
|
$suite = new CakeTestSuite('All Helper tests');
|
2010-06-12 23:32:01 -04:00
|
|
|
|
2010-06-12 23:53:14 -04:00
|
|
|
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'helper.test.php');
|
2010-07-31 16:21:00 -04:00
|
|
|
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'helper_collection.test.php');
|
2010-09-25 00:13:37 -04:00
|
|
|
$suite->addTestDirectory(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'helpers' . DS);
|
2010-06-12 23:53:14 -04:00
|
|
|
return $suite;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|