summaryrefslogtreecommitdiff
path: root/tests/unit/Caching/AllTests.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Caching/AllTests.php')
-rw-r--r--tests/unit/Caching/AllTests.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/Caching/AllTests.php b/tests/unit/Caching/AllTests.php
index 072a6182..555a4344 100644
--- a/tests/unit/Caching/AllTests.php
+++ b/tests/unit/Caching/AllTests.php
@@ -5,7 +5,8 @@ if(!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'Caching_AllTests::main');
}
-require_once 'TCacheTest.php';
+require_once 'TSqliteCacheTest.php';
+require_once 'TAPCCacheTest.php';
class Caching_AllTests {
public static function main() {
@@ -15,7 +16,8 @@ class Caching_AllTests {
public static function suite() {
$suite = new PHPUnit_Framework_TestSuite('System.Caching');
- $suite->addTestSuite('TCacheTest');
+ $suite->addTestSuite('TSqliteCacheTest');
+ $suite->addTestSuite('TAPCCacheTest');
return $suite;
}