- #include "tests/HashMapTests.h"
- #include "tests/ListTests.h"
- #include "tests/BitArrayTests.h"
- #include "utils/HashMap.h"
- #include <unordered_map>
- #include <iostream>
- int main() {
- HashMapTests::test();
- ListTests::test();
- BitArrayTests::test();
- return 0;
- }
|