summaryrefslogtreecommitdiff
path: root/tests/unit/Web/AllTests.php
diff options
context:
space:
mode:
authorknut <>2007-06-11 17:24:23 +0000
committerknut <>2007-06-11 17:24:23 +0000
commit664830a178052d915d5dfc59a3e023120781d6ba (patch)
treea353bc02db96af0e4a9c474c8bbfcf874f9611e5 /tests/unit/Web/AllTests.php
parentdbd2306c6986e16e5cf92b01aa0a08040cb8b1b7 (diff)
corrected TAPCCache according to #646 and added some more stubs for unit tests in System.Web.UI
Diffstat (limited to 'tests/unit/Web/AllTests.php')
-rw-r--r--tests/unit/Web/AllTests.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unit/Web/AllTests.php b/tests/unit/Web/AllTests.php
index c9666be9..0315c7eb 100644
--- a/tests/unit/Web/AllTests.php
+++ b/tests/unit/Web/AllTests.php
@@ -14,6 +14,8 @@ require_once 'THttpSessionTest.php';
require_once 'THttpUtilityTest.php';
require_once 'TUriTest.php';
+require_once 'UI/AllTests.php';
+
class Web_AllTests {
public static function main() {
PHPUnit_TextUI_TestRunner::run(self::suite());
@@ -31,6 +33,8 @@ class Web_AllTests {
$suite->addTestSuite('THttpUtilityTest');
$suite->addTestSuite('TUriTest');
+ $suite->addTest(Web_UI_AllTests::suite());
+
return $suite;
}
}