| 28 | { |
| 29 | public: |
| 30 | static void SetUpTestCase() |
| 31 | { |
| 32 | gOpenRCT2Headless = true; |
| 33 | gOpenRCT2NoGraphics = true; |
| 34 | _context = CreateContext(); |
| 35 | const bool initialised = _context->Initialise(); |
| 36 | ASSERT_TRUE(initialised); |
| 37 | |
| 38 | std::string parkPath = TestData::GetParkPath("pathfinding-tests.sv6"); |
| 39 | GetContext()->LoadParkFromFile(parkPath); |
| 40 | GameLoadInit(); |
| 41 | } |
| 42 | |
| 43 | void SetUp() override |
| 44 | { |
nothing calls this directly
no test coverage detected