2018-06-15 08:07:34 -04:00
|
|
|
/*****************************************************************************
|
|
|
|
* Copyright (c) 2014-2018 OpenRCT2 developers
|
|
|
|
*
|
|
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
|
|
*
|
|
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2016-12-01 19:34:14 -05:00
|
|
|
// This serves as the entry point when building for MSVC which compiles gtest
|
|
|
|
// directly into the test binary.
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
2018-07-21 11:27:15 -04:00
|
|
|
# include <gtest/gtest.h>
|
|
|
|
# include <openrct2/core/Guard.hpp>
|
2016-12-01 19:34:14 -05:00
|
|
|
|
2018-06-22 16:29:03 -04:00
|
|
|
int main(int argc, char** argv)
|
2017-06-06 17:24:18 -04:00
|
|
|
{
|
2017-02-01 18:11:47 -05:00
|
|
|
// Abort on an assertions so the tests do not hang
|
|
|
|
Guard::SetAssertBehaviour(ASSERT_BEHAVIOUR::ABORT);
|
|
|
|
|
2016-12-02 12:16:12 -05:00
|
|
|
testing::InitGoogleTest(&argc, argv);
|
|
|
|
return RUN_ALL_TESTS();
|
2016-12-01 19:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|