Main.cpp 318 B

12345678910111213141516171819202122
  1. // Copyright (c) 2008-2022 the Urho3D project
  2. // License: MIT
  3. #include <iostream>
  4. void Test_Container_Str();
  5. void Test_Math_BigInt();
  6. void Run()
  7. {
  8. Test_Container_Str();
  9. Test_Math_BigInt();
  10. }
  11. int main(int argc, char* argv[])
  12. {
  13. Run();
  14. std::cout << "All tests success" << std::endl;
  15. return 0;
  16. }