summaryrefslogtreecommitdiff
path: root/tests/unit/Caching/AllTests.php
diff options
context:
space:
mode:
authorknut <>2007-06-04 23:33:06 +0000
committerknut <>2007-06-04 23:33:06 +0000
commit996bb8664856b302c96e19c6899010ea72ababe6 (patch)
tree0daad116697c7c9f58bc74244277457ede412348 /tests/unit/Caching/AllTests.php
parentb7d5fc392611f0cb7f1ff6d87b758cb9572c7806 (diff)
added more unit test stubs
Diffstat (limited to 'tests/unit/Caching/AllTests.php')
-rw-r--r--tests/unit/Caching/AllTests.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/unit/Caching/AllTests.php b/tests/unit/Caching/AllTests.php
new file mode 100644
index 00000000..072a6182
--- /dev/null
+++ b/tests/unit/Caching/AllTests.php
@@ -0,0 +1,27 @@
+<?php
+require_once dirname(__FILE__).'/../phpunit.php';
+
+if(!defined('PHPUnit_MAIN_METHOD')) {
+ define('PHPUnit_MAIN_METHOD', 'Caching_AllTests::main');
+}
+
+require_once 'TCacheTest.php';
+
+class Caching_AllTests {
+ public static function main() {
+ PHPUnit_TextUI_TestRunner::run(self::suite());
+ }
+
+ public static function suite() {
+ $suite = new PHPUnit_Framework_TestSuite('System.Caching');
+
+ $suite->addTestSuite('TCacheTest');
+
+ return $suite;
+ }
+}
+
+if(PHPUnit_MAIN_METHOD == 'Caching_AllTests::main') {
+ Caching_AllTests::main();
+}
+?>