Main.cpp 496 B

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