Main.cpp 377 B

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