本文整理汇总了PHP中PHPUnit_Util_Filter::filterPHPUnit方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPUnit_Util_Filter::filterPHPUnit方法的具体用法?PHP PHPUnit_Util_Filter::filterPHPUnit怎么用?PHP PHPUnit_Util_Filter::filterPHPUnit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPUnit_Util_Filter
的用法示例。
在下文中一共展示了PHPUnit_Util_Filter::filterPHPUnit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: suite
* @package PHPUnit
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
* @copyright 2002-2009 Sebastian Bergmann <sb@sebastian-bergmann.de>
* @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @version SVN: $Id: AllTests.php 4403 2008-12-31 09:26:51Z sb $
* @link http://www.phpunit.de/
* @since File available since Release 2.3.0
*/
require_once PATH_TO_ROOT . '/test/PHPUnit/Util/Filter.php';
require_once PATH_TO_ROOT . '/test/PHPUnit/Framework/TestSuite.php';
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'TestDox' . DIRECTORY_SEPARATOR . 'AllTests.php';
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'ConfigurationTest.php';
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'TestTest.php';
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'TimerTest.php';
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'XMLTest.php';
PHPUnit_Util_Filter::$filterPHPUnit = FALSE;
/**
*
*
* @category Testing
* @package PHPUnit
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
* @copyright 2002-2009 Sebastian Bergmann <sb@sebastian-bergmann.de>
* @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @version Release: 3.4.3
* @link http://www.phpunit.de/
* @since Class available since Release 2.0.0
*/
class Util_AllTests
{
public static function suite()