| 71 | |
| 72 | template <typename T> |
| 73 | static void testNonPlayer(T& ch) { |
| 74 | ch.SetRemainingStep(256); |
| 75 | ch.SetJumping(true); |
| 76 | ch.SetJumping(true); |
| 77 | ch.SetStopCount(77); |
| 78 | ch.SetMaxStopCount(88); |
| 79 | ch.SetAnimCount(9); |
| 80 | ch.SetAnimFrame(2); |
| 81 | ch.SetSpriteGraphic("GRAPHIC", 1); |
| 82 | |
| 83 | ch.MoveTo(static_cast<int>(map_id), 2, 3); |
| 84 | |
| 85 | testChar(ch, 1, 2, 3, 0, true, 77, 88, 9, 2, "GRAPHIC", 1); |
| 86 | } |
| 87 | |
| 88 | TEST_CASE("Vehicle") { |
| 89 | const MockGame mg(map_id); |
no test coverage detected