Main.cpp 216 B

12345678910
  1. #include "tests/ArrayTests.h"
  2. #include "tests/StringTests.h"
  3. #include "tests/UtilityTests.h"
  4. int main() {
  5. Core::ArrayTests::test();
  6. Core::StringTests::test();
  7. Core::UtilityTests::test();
  8. return 0;
  9. }