summaryrefslogtreecommitdiff
path: root/tests/unit/Caching/AllTests.php
diff options
context:
space:
mode:
authorcarl <>2007-07-26 16:01:17 +0000
committercarl <>2007-07-26 16:01:17 +0000
commitbb0f7a0f25545b067d796d2eeeecb19901abdd5f (patch)
tree32255c16eb5c6f553c384ac9d1bfdae33cd5c7c3 /tests/unit/Caching/AllTests.php
parent01997bcbaa545654111d88e2386c54087b5a2ce8 (diff)
#623 - MemCache to support multiple servers
Diffstat (limited to 'tests/unit/Caching/AllTests.php')
-rw-r--r--tests/unit/Caching/AllTests.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit/Caching/AllTests.php b/tests/unit/Caching/AllTests.php
index 555a4344..641311db 100644
--- a/tests/unit/Caching/AllTests.php
+++ b/tests/unit/Caching/AllTests.php
@@ -7,6 +7,7 @@ if(!defined('PHPUnit_MAIN_METHOD')) {
require_once 'TSqliteCacheTest.php';
require_once 'TAPCCacheTest.php';
+require_once 'TMemCacheTest.php';
class Caching_AllTests {
public static function main() {
@@ -18,6 +19,7 @@ class Caching_AllTests {
$suite->addTestSuite('TSqliteCacheTest');
$suite->addTestSuite('TAPCCacheTest');
+ $suite->addTestSuite('TMemCacheTest');
return $suite;
}