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

55 lines
1.6 KiB
PHP
Raw Normal View History

<?php
/**
* HelpersGroupTest file
*
* PHP 5
*
* 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)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
2010-01-26 19:18:20 +00:00
* @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
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
/**
* HelpersGroupTest class
*
* This test group will run all test in the cases/libs/view/helpers directory.
*
* @package cake
* @subpackage cake.tests.groups
*/
class AllHelpersTest extends PHPUnit_Framework_TestSuite {
/**
2010-06-13 14:09:48 +00:00
* suite declares tests to run
*
* @access public
* @return void
*/
2010-06-13 03:53:14 +00:00
public static function suite() {
$suite = new PHPUnit_Framework_TestSuite('All Helper tests');
2010-06-13 03:53:14 +00:00
$suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'helper.test.php');
$helperIterator = new DirectoryIterator(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'helpers' . DS);
// The following test cases cause segfaults for me.
2010-06-13 03:53:14 +00:00
$segfaulty = array('form.test.php', 'cache.test.php', 'session.test.php');
foreach ($helperIterator as $i => $file) {
if (!$file->isDot() && !in_array($file->getFilename(), $segfaulty)) {
2010-06-13 03:53:14 +00:00
$suite->addTestfile($file->getPathname());
}
}
2010-06-13 03:53:14 +00:00
return $suite;
}
}