Main.cpp 140 B

12345678
  1. #include "tests/HashMapTests.h"
  2. #include "tests/ListTests.h"
  3. int main() {
  4. HashMapTests::test();
  5. ListTests::test();
  6. return 0;
  7. }