diff options
Diffstat (limited to 'tests/unit/IO/AllTests.php')
-rw-r--r-- | tests/unit/IO/AllTests.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/unit/IO/AllTests.php b/tests/unit/IO/AllTests.php new file mode 100644 index 00000000..da8d91a0 --- /dev/null +++ b/tests/unit/IO/AllTests.php @@ -0,0 +1,27 @@ +<?php +require_once dirname(__FILE__).'/../phpunit.php'; + +if(!defined('PHPUnit_MAIN_METHOD')) { + define('PHPUnit_MAIN_METHOD', 'IO_AllTests::main'); +} + +require_once 'TTextWriterTest.php'; + +class IO_AllTests { + public static function main() { + PHPUnit_TextUI_TestRunner::run(self::suite()); + } + + public static function suite() { + $suite = new PHPUnit_Framework_TestSuite('System.IO'); + + $suite->addTestSuite('TTextWriterTest'); + + return $suite; + } +} + +if(PHPUnit_MAIN_METHOD == 'IO_AllTests::main') { + IO_AllTests::main(); +} +?> |