You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.cpp 310B

12345678910111213141516
  1. #include <gtest/gtest.h>
  2. // ReSharper disable CppUnusedIncludeDirective
  3. #include "CMatrixTest.hpp"
  4. #include "CTimeTest.hpp"
  5. #include "CIdentifierTest.hpp"
  6. int main(int argc, char* argv[])
  7. {
  8. try
  9. {
  10. testing::InitGoogleTest(&argc, argv);
  11. return RUN_ALL_TESTS();
  12. }
  13. catch (std::exception&) { return 1; }
  14. }