cakephp2-php8/cake/tests/cases/libs/all_cache_engines.test.php

50 lines
1.3 KiB
PHP
Raw Normal View History

2010-06-21 03:46:45 +00:00
<?php
/**
* AllCacheEnginesTest file
2010-06-21 03:46:45 +00:00
*
* PHP 5
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package cake
* @subpackage cake.tests.cases
* @since CakePHP(tm) v 2.0
2010-06-21 03:46:45 +00:00
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
/**
* AllCacheEnginesTest class
2010-06-21 03:46:45 +00:00
*
2010-06-22 01:49:52 +00:00
* This test group will run cache engine tests.
2010-06-21 03:46:45 +00:00
*
* @package cake
* @subpackage cake.tests.groups
*/
class AllCacheEnginesTest extends PHPUnit_Framework_TestSuite {
2010-06-21 03:46:45 +00:00
/**
* suite method, defines tests for this suite.
*
* @return void
*/
public static function suite() {
$suite = new PHPUnit_Framework_TestSuite('All Cache related class tests');
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'cache.test.php');
$cacheIterator = new DirectoryIterator(CORE_TEST_CASES . DS . 'libs' . DS . 'cache');
foreach ($cacheIterator as $i => $file) {
if (!$file->isDot()) {
$suite->addTestfile($file->getPathname());
}
}
return $suite;
}
}