diff options
author | carl <> | 2007-07-26 16:01:17 +0000 |
---|---|---|
committer | carl <> | 2007-07-26 16:01:17 +0000 |
commit | bb0f7a0f25545b067d796d2eeeecb19901abdd5f (patch) | |
tree | 32255c16eb5c6f553c384ac9d1bfdae33cd5c7c3 /tests/unit/Caching/AllTests.php | |
parent | 01997bcbaa545654111d88e2386c54087b5a2ce8 (diff) |
#623 - MemCache to support multiple servers
Diffstat (limited to 'tests/unit/Caching/AllTests.php')
-rw-r--r-- | tests/unit/Caching/AllTests.php | 2 |
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; } |