Skip to content

Commit

Permalink
Adding group test for new Javascript engine.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Apr 7, 2009
1 parent f74408d commit ef024b8
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions cake/tests/groups/javascript.group.php
@@ -0,0 +1,57 @@
<?php
/* SVN FILE: $Id$ */
/**
* AllCoreJavascriptHelpersGroupTest file
*
* Long description for file
*
* PHP versions 4 and 5
*
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
* Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
*
* Licensed under The Open Group Test Suite License
* Redistributions of files must retain the above copyright notice.
*
* @filesource
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
* @package cake
* @subpackage cake.tests.groups
* @since CakePHP(tm) v 1.2.0.4206
* @version $Revision$
* @modifiedby $LastChangedBy$
* @lastmodified $Date$
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
*/
/**
* AllCoreJavascriptHelpersGroupTest class
*
* This test group will run all test in the cases/libs/view/helpers directory.
*
* @package cake
* @subpackage cake.tests.groups
*/
class AllCoreJavascriptHelpersGroupTest extends GroupTest {
/**
* label property
*
* @var string 'All core helpers'
* @access public
*/
var $label = 'All Javascript Helpers';
/**
* AllCoreHelpersGroupTest method
*
* @access public
* @return void
*/
function AllCoreJavascriptHelpersGroupTest() {
$helperTestPath = CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'helpers' . DS;
TestManager::addTestFile($this, $helperTestPath . 'js.test.php');
TestManager::addTestFile($this, $helperTestPath . 'jquery_engine.test.php');
TestManager::addTestFile($this, $helperTestPath . 'mootools_engine.test.php');
TestManager::addTestFile($this, $helperTestPath . 'prototype_engine.test.php');
}
}
?>

0 comments on commit ef024b8

Please sign in to comment.