3 * AllCoreJavascriptHelpersGroupTest file
8 * CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
9 * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
11 * Licensed under The Open Group Test Suite License
12 * Redistributions of files must retain the above copyright notice.
14 * @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
15 * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
17 * @subpackage cake.tests.groups
18 * @since CakePHP(tm) v 1.3
19 * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
22 * AllCoreJavascriptHelpersGroupTest class
24 * This test group will run all test in the cases/libs/view/helpers directory related
25 * to Js helper and its engines
28 * @subpackage cake.tests.groups
30 class AllCoreJavascriptHelpersGroupTest
extends TestSuite
{
34 * @var string 'All core helpers'
37 var $label = 'Js Helper and all Engine Helpers';
39 * AllCoreHelpersGroupTest method
44 function AllCoreJavascriptHelpersGroupTest() {
45 $helperTestPath = CORE_TEST_CASES
. DS
. 'libs' . DS
. 'view' . DS
. 'helpers' . DS
;
46 TestManager
::addTestFile($this, $helperTestPath . 'js.test.php');
47 TestManager
::addTestFile($this, $helperTestPath . 'jquery_engine.test.php');
48 TestManager
::addTestFile($this, $helperTestPath . 'mootools_engine.test.php');
49 TestManager
::addTestFile($this, $helperTestPath . 'prototype_engine.test.php');