Main.cpp 271 B

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