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
|
|
|
*
|
2017-06-10 23:33:55 +02:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
2017-06-11 00:10:52 +02:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-06-13 10:14:28 -04:00
|
|
|
* Licensed under The MIT License
|
2013-02-08 21:22:51 +09:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-06-13 10:14:28 -04:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2017-06-11 00:10:52 +02:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2017-06-10 23:33:55 +02:00
|
|
|
* @link https://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
|
2017-06-11 00:23:14 +02:00
|
|
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
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
|
|
|
*/
|
2022-12-28 15:46:06 +09: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
|
|
|
}
|
|
|
|
}
|