D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
lampp
/
lib
/
php
/
test
/
Math_Integer
/
tests
/
Filename :
AllTests.php
back
Copy
<?php if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'Math_Integer_AllTests::main'); } require_once 'PHPUnit/TextUI/TestRunner.php'; require_once 'Math_IntegerTest.php'; class Math_Integer_AllTests { public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } public static function suite() { $suite = new PHPUnit_Framework_TestSuite('PEAR - Math_Integer'); $suite->addTestSuite('Math_IntegerTest'); return $suite; } } if (PHPUnit_MAIN_METHOD == 'Math_Integer_AllTests::main') { Math_Integer_AllTests::main(); }