* Test suite for PHP_CompatInfo
* @package PHP_CompatInfo
* @author Laurent Laville <pear@laurent-laville.org>
* @license http://www.opensource.org/licenses/bsd-license.php BSD
* @version CVS: $Id: AllTests.php,v 1.4 2008/07/22 20:27:11 farell Exp $
* @link http://pear.php.net/package/PHP_CompatInfo
* @since File available since Release 1.6.0
if (!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'PHP_CompatInfo_AllTests::main');
require_once 'PHPUnit/Framework/TestSuite.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
chdir(dirname(__FILE__));
require_once 'PEAR/Config.php';
require_once 'PHP_CompatInfo_TestSuite_Standard.php';
require_once 'PHP_CompatInfo_TestSuite_Bugs.php';
* Class for running all test suites for PHP_CompatInfo package.
* @package PHP_CompatInfo
* @author Laurent Laville <pear@laurent-laville.org>
* @license http://www.opensource.org/licenses/bsd-license.php BSD
* @version Release: @package_version@
* @link http://pear.php.net/package/PHP_CompatInfo
* @since File available since Release 1.6.0
class PHP_CompatInfo_AllTests