Main.cpp 515 B

123456789101112131415161718192021222324252627
  1. // Copyright (c) 2008-2023 the Urho3D project
  2. // Copyright (c) 2022-2023 the Dviglo project
  3. // License: MIT
  4. #include <iostream>
  5. #include <clocale>
  6. void Test_Container_Str();
  7. void Test_Math_BigInt();
  8. void test_third_party_sdl();
  9. void Run()
  10. {
  11. Test_Container_Str();
  12. Test_Math_BigInt();
  13. test_third_party_sdl();
  14. }
  15. int main(int argc, char* argv[])
  16. {
  17. Run();
  18. std::setlocale(LC_ALL, "en_US.UTF-8");
  19. std::cout << "Все тесты пройдены успешно" << std::endl;
  20. return 0;
  21. }