2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2010-06-13 14:14:28 +00:00
|
|
|
* AllViewsTest file
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-06-13 14:14:28 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-06-13 14:14:28 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-01-26 19:18:20 +00:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-06-13 14:14:28 +00: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 19:18:20 +00:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-06-13 14:14:28 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2009-03-18 17:55:58 +00:00
|
|
|
* @package cake
|
2010-06-13 14:14:28 +00:00
|
|
|
* @subpackage cake.tests.cases
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0.4206
|
2010-06-13 14:14:28 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2010-06-13 14:14:28 +00:00
|
|
|
* AllViewsTest class
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2009-03-18 17:55:58 +00:00
|
|
|
* This test group will run view class tests (view, theme)
|
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.tests.groups
|
2008-06-02 19:22:55 +00:00
|
|
|
*/
|
2010-06-13 14:10:16 +00:00
|
|
|
class AllViewsTest extends PHPUnit_Framework_TestSuite {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2010-06-13 14:10:16 +00:00
|
|
|
* suite method, defines tests for this suite.
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2010-06-13 14:10:16 +00:00
|
|
|
public static function suite() {
|
|
|
|
$suite = new PHPUnit_Framework_TestSuite('All View class tests');
|
|
|
|
|
|
|
|
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'view.test.php');
|
|
|
|
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'theme.test.php');
|
|
|
|
return $suite;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|