Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phpif (!defined('PHPUnit_MAIN_METHOD')) {define('PHPUnit_MAIN_METHOD', 'phpDocumentorTParserTests::main');}require_once 'PHPUnit/Framework.php';require_once 'PHPUnit/TextUI/TestRunner.php';/* You must add each method-level test suite file here */require_once 'phpDocumentorTParserGetInlineTagsTests.php';class tests_phpDocumentorTParserTests{public static function main(){PHPUnit_TextUI_TestRunner::run(self::suite());}public static function suite(){$suite = new PHPUnit_Framework_TestSuite('phpDocumentorTParser Unit Test Suites');/* You must add each method-level test suite name here */$suite->addTestSuite('tests_phpDocumentorTParserGetInlineTagsTests');return $suite;}}if (PHPUnit_MAIN_METHOD == 'phpDocumentorTParserTests::main') {tests_phpDocumentorTParserTests::main();}?>