Files
OpenRCT2-Unity/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