Main.cpp 676 B

123456789101112131415161718192021222324
  1. #include "tests/ArrayListTests.h"
  2. #include "tests/ArrayTests.h"
  3. #include "tests/BitArrayTests.h"
  4. #include "tests/HashMapTests.h"
  5. #include "tests/LinkedListTests.h"
  6. #include "tests/ListTests.h"
  7. #include "tests/MathTests.h"
  8. #include "tests/StringTests.h"
  9. #include "tests/UniquePointerTests.h"
  10. #include "tests/UtilityTests.h"
  11. int main() {
  12. Core::ArrayTests::test();
  13. Core::StringTests::test();
  14. Core::UtilityTests::test();
  15. Core::ArrayListTests::test();
  16. Core::BitArrayTests::test();
  17. Core::MathTests::test();
  18. Core::ListTests::test();
  19. Core::LinkedListTests::test();
  20. Core::HashMapTests::test();
  21. Core::UniquePointerTests::test();
  22. return 0;
  23. }