Current Path : /compat/linux/proc/self/root/usr/local/share/pear/test/XML_RSS/tests/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //compat/linux/proc/self/root/usr/local/share/pear/test/XML_RSS/tests/AllTests.php |
<?php if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'AllTests::main'); } require_once 'PHPUnit/Framework.php'; require_once 'PHPUnit/TextUI/TestRunner.php'; require_once 'XML_RSS_Infrastructure_Test.php'; require_once 'XML_RSS_Parsing_Test.php'; class AllTests { public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } public static function suite() { $suite = new PHPUnit_Framework_TestSuite('XML_RSS Tests'); $suite->addTestSuite('XML_RSS_Parsing_Test'); $suite->addTestSuite('XML_RSS_Infrastructure_Test'); return $suite; } } if (PHPUnit_MAIN_METHOD == 'AllTests::main') { AllTests::main(); } // vim:set noet ts=4 sw=4: