2010-11-14 22:24:29 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* AllErrorTest file
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 20:59:49 +09:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-11-14 22:24:29 -05: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-11-14 22:24:29 -05:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 20:59:49 +09:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-11-14 22:24:29 -05:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Case
|
2010-11-14 22:24:29 -05:00
|
|
|
* @since CakePHP(tm) v 2.0
|
2013-05-31 00:11:14 +02:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2010-11-14 22:24:29 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AllErrorTest class
|
|
|
|
*
|
|
|
|
* This test group will run error handling related tests.
|
|
|
|
*
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.Case
|
2010-11-14 22:24:29 -05:00
|
|
|
*/
|
|
|
|
class AllErrorTest extends PHPUnit_Framework_TestSuite {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* suite method, defines tests for this suite.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function suite() {
|
2011-04-22 12:01:33 -04:00
|
|
|
$suite = new CakeTestSuite('All Error handling tests');
|
2010-11-14 22:24:29 -05:00
|
|
|
|
2011-04-11 22:23:44 -04:30
|
|
|
$libs = CORE_TEST_CASES . DS;
|
2010-11-14 22:24:29 -05:00
|
|
|
|
2011-04-22 12:01:33 -04:00
|
|
|
$suite->addTestDirectory($libs . 'Error');
|
2010-11-14 22:24:29 -05:00
|
|
|
return $suite;
|
|
|
|
}
|
|
|
|
}
|