| 1 | // |
|---|---|
| 2 | // HashingTestSuite.cpp |
| 3 | // |
| 4 | // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. |
| 5 | // and Contributors. |
| 6 | // |
| 7 | // SPDX-License-Identifier: BSL-1.0 |
| 8 | // |
| 9 | |
| 10 | |
| 11 | #include "HashingTestSuite.h" |
| 12 | #include "HashTableTest.h" |
| 13 | #include "SimpleHashTableTest.h" |
| 14 | #include "LinearHashTableTest.h" |
| 15 | #include "HashSetTest.h" |
| 16 | #include "HashMapTest.h" |
| 17 | |
| 18 | |
| 19 | CppUnit::Test* HashingTestSuite::suite() |
| 20 | { |
| 21 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("HashingTestSuite"); |
| 22 | |
| 23 | pSuite->addTest(HashTableTest::suite()); |
| 24 | pSuite->addTest(SimpleHashTableTest::suite()); |
| 25 | pSuite->addTest(LinearHashTableTest::suite()); |
| 26 | pSuite->addTest(HashSetTest::suite()); |
| 27 | pSuite->addTest(HashMapTest::suite()); |
| 28 | |
| 29 | return pSuite; |
| 30 | } |
| 31 |