2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2011-04-22 16:01:33 +00:00
|
|
|
* AllLogTest 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
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.tests.cases
|
2010-06-22 01:48:23 +00:00
|
|
|
* @since CakePHP(tm) v 2.0
|
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
|
|
|
/**
|
2011-04-22 16:01:33 +00:00
|
|
|
* AllLogTest class
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2011-04-22 16:01:33 +00:00
|
|
|
* This test group will run log tests.
|
2009-03-18 17:55:58 +00:00
|
|
|
*
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.tests.groups
|
2008-06-02 19:22:55 +00:00
|
|
|
*/
|
2011-04-22 16:01:33 +00:00
|
|
|
class AllLogTest 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() {
|
2011-04-22 16:01:33 +00:00
|
|
|
$suite = new CakeTestSuite('All Logging related class tests');
|
|
|
|
$suite->addTestDirectory(CORE_TEST_CASES . DS . 'Log');
|
|
|
|
$suite->addTestDirectory(CORE_TEST_CASES . DS . 'Log' . DS . 'Engine');
|
2010-06-13 14:10:16 +00:00
|
|
|
return $suite;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
2011-04-22 16:01:33 +00:00
|
|
|
|