diff options
author | knut <> | 2007-05-30 12:57:59 +0000 |
---|---|---|
committer | knut <> | 2007-05-30 12:57:59 +0000 |
commit | 17585ab833c900027b724af39a85a66a0491b1ea (patch) | |
tree | 200b238bb48a648721215e4b834b605b82a38d90 /tests/unit/Collections/AllTests.php | |
parent | 0c859c17c7439155d2ed185cb5f1d3977519c002 (diff) |
full coverage for TQueue
Diffstat (limited to 'tests/unit/Collections/AllTests.php')
-rw-r--r-- | tests/unit/Collections/AllTests.php | 6 |
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; } |