2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2011-04-22 12:01:33 -04:00
|
|
|
* AllViewTest 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)
|
2012-03-12 22:46:46 -04:00
|
|
|
* Copyright 2005-2012, 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
|
|
|
*
|
2012-03-12 22:46:46 -04:00
|
|
|
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-06-13 10:14:28 -04:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Case
|
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
|
|
|
/**
|
2011-04-22 12:01:33 -04:00
|
|
|
* AllViewTest 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)
|
|
|
|
*
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Case
|
2008-06-02 19:22:55 +00:00
|
|
|
*/
|
2011-04-22 12:01:33 -04:00
|
|
|
class AllViewTest extends PHPUnit_Framework_TestSuite {
|
2009-07-24 21:18:37 +02:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2010-06-13 10:10:16 -04: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 10:10:16 -04:00
|
|
|
public static function suite() {
|
2011-04-11 22:23:44 -04:30
|
|
|
$suite = new CakeTestSuite('All View class tests');
|
2010-06-13 10:10:16 -04:00
|
|
|
|
2011-04-11 22:23:44 -04:30
|
|
|
$suite->addTestDirectory(CORE_TEST_CASES . DS . 'View');
|
2010-06-13 10:10:16 -04:00
|
|
|
return $suite;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|