Main.cpp 441 B

123456789101112131415161718
  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. #include "tests/RingBufferTests.h"
  8. int main() {
  9. ArrayTests::test();
  10. HashMapTests::test();
  11. ListTests::test();
  12. BitArrayTests::test();
  13. StringBufferTests::test();
  14. RandomTests::test();
  15. RingBufferTests::test();
  16. return 0;
  17. }