summaryrefslogtreecommitdiff
path: root/tests/unit/Collections/AllTests.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Collections/AllTests.php')
-rw-r--r--tests/unit/Collections/AllTests.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/Collections/AllTests.php b/tests/unit/Collections/AllTests.php
index c9da9132..d9158f3a 100644
--- a/tests/unit/Collections/AllTests.php
+++ b/tests/unit/Collections/AllTests.php
@@ -5,8 +5,9 @@ if(!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'Collections_AllTests::main');
}
-require_once 'Collections/TListTest.php';
-require_once 'Collections/TMapTest.php';
+require_once 'TListTest.php';
+require_once 'TMapTest.php';
+require_once 'TQueueTest.php';
class Collections_AllTests {
public static function main() {
@@ -18,6 +19,7 @@ class Collections_AllTests {
$suite->addTestSuite('TListTest');
$suite->addTestSuite('TMapTest');
+ $suite->addTestSuite('TQueueTest');
return $suite;
}