1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-12 18:42:36 +01:00
Files
OpenRCT2/test/tests/tests.cpp
2016-12-02 17:16:12 +00:00

14 lines
272 B
C++

// This serves as the entry point when building for MSVC which compiles gtest
// directly into the test binary.
#ifdef _MSC_VER
#include <gtest/gtest.h>
int main(int argc, char * * argv)
{
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
#endif