OpenRCT2/test/tests/tests.cpp

18 lines
419 B
C++
Raw Normal View History

2016-12-02 01:34:14 +01:00
// 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>
#include <openrct2/core/Guard.hpp>
2016-12-02 01:34:14 +01:00
int main(int argc, char * * argv)
{
// Abort on an assertions so the tests do not hang
Guard::SetAssertBehaviour(ASSERT_BEHAVIOUR::ABORT);
2016-12-02 18:16:12 +01:00
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
2016-12-02 01:34:14 +01:00
}
#endif