Main.cpp 200 B

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