Main.cpp 274 B

123456789101112131415
  1. #include "tests/HashMapTests.h"
  2. #include "tests/ListTests.h"
  3. #include "tests/BitArrayTests.h"
  4. #include "utils/HashMap.h"
  5. #include <unordered_map>
  6. #include <iostream>
  7. int main() {
  8. HashMapTests::test();
  9. ListTests::test();
  10. BitArrayTests::test();
  11. return 0;
  12. }