summaryrefslogtreecommitdiff
path: root/tests/unit/Web/AllTests.php
diff options
context:
space:
mode:
authorknut <>2007-05-29 20:29:10 +0000
committerknut <>2007-05-29 20:29:10 +0000
commit376a5af2d258f87e2be75b667850436987c68a55 (patch)
treeff97724cc6ff4d5a474835d7d915ccbde0ca2c54 /tests/unit/Web/AllTests.php
parent82a351192f38cc73268ea7de7a48e2e0425d5cbf (diff)
upgraded unit test suite to use PHPUnit3
use "cd tests/; phpunit AllTests.php" to run the tests use "cd tests/; phpunit --report=coverage AllTests.php" to get a nice code coverage report (need xdebug)
Diffstat (limited to 'tests/unit/Web/AllTests.php')
-rw-r--r--tests/unit/Web/AllTests.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/unit/Web/AllTests.php b/tests/unit/Web/AllTests.php
new file mode 100644
index 00000000..c9666be9
--- /dev/null
+++ b/tests/unit/Web/AllTests.php
@@ -0,0 +1,41 @@
+<?php
+require_once dirname(__FILE__).'/../phpunit.php';
+
+if(!defined('PHPUnit_MAIN_METHOD')) {
+ define('PHPUnit_MAIN_METHOD', 'Web_AllTests::main');
+}
+
+require_once 'TAssetManagerTest.php';
+require_once 'THttpCookieCollectionTest.php';
+require_once 'THttpCookieTest.php';
+require_once 'THttpRequestTest.php';
+require_once 'THttpResponseTest.php';
+require_once 'THttpSessionTest.php';
+require_once 'THttpUtilityTest.php';
+require_once 'TUriTest.php';
+
+class Web_AllTests {
+ public static function main() {
+ PHPUnit_TextUI_TestRunner::run(self::suite());
+ }
+
+ public static function suite() {
+ $suite = new PHPUnit_Framework_TestSuite('System.Web');
+
+ $suite->addTestSuite('TAssetManagerTest');
+ $suite->addTestSuite('THttpCookieCollectionTest');
+ $suite->addTestSuite('THttpCookieTest');
+ $suite->addTestSuite('THttpRequestTest');
+ $suite->addTestSuite('THttpResponseTest');
+ $suite->addTestSuite('THttpSessionTest');
+ $suite->addTestSuite('THttpUtilityTest');
+ $suite->addTestSuite('TUriTest');
+
+ return $suite;
+ }
+}
+
+if(PHPUnit_MAIN_METHOD == 'Web_AllTests::main') {
+ Web_AllTests::main();
+}
+?>