Main.cpp 321 B

1234567891011121314
  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. int main() {
  7. ArrayTests::test();
  8. HashMapTests::test();
  9. ListTests::test();
  10. BitArrayTests::test();
  11. StringBufferTests::test();
  12. return 0;
  13. }