diff options
author | knut <> | 2007-05-30 13:18:02 +0000 |
---|---|---|
committer | knut <> | 2007-05-30 13:18:02 +0000 |
commit | 50f4cc47a96fd6c3f5818a5a70d585f3964f99cc (patch) | |
tree | b931e5fa1fb8a6e60c6fef837f50b1f8712f5933 /tests/unit/Collections/AllTests.php | |
parent | 17585ab833c900027b724af39a85a66a0491b1ea (diff) |
full coverage for TStack
Diffstat (limited to 'tests/unit/Collections/AllTests.php')
-rw-r--r-- | tests/unit/Collections/AllTests.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit/Collections/AllTests.php b/tests/unit/Collections/AllTests.php index d9158f3a..a639a42c 100644 --- a/tests/unit/Collections/AllTests.php +++ b/tests/unit/Collections/AllTests.php @@ -8,6 +8,7 @@ if(!defined('PHPUnit_MAIN_METHOD')) { require_once 'TListTest.php'; require_once 'TMapTest.php'; require_once 'TQueueTest.php'; +require_once 'TStackTest.php'; class Collections_AllTests { public static function main() { @@ -20,6 +21,7 @@ class Collections_AllTests { $suite->addTestSuite('TListTest'); $suite->addTestSuite('TMapTest'); $suite->addTestSuite('TQueueTest'); + $suite->addTestSuite('TStackTest'); return $suite; } |