Extend multilaunch test to perform game_logic_updates

This commit is contained in:
Michał Janiszewski 2017-08-02 00:52:33 +02:00 committed by Michał Janiszewski
parent 1d473fb9c6
commit c3dd3f193f

View file

@ -34,6 +34,11 @@ TEST(MultiLaunchTest, all)
// Check ride count to check load was successful
ASSERT_EQ(gRideCount, 134);
for (int j = 0; j < 10; j++)
{
game_logic_update();
}
delete context;
}
SUCCEED();