| 60 | |
| 61 | template <typename... Args> |
| 62 | static void testMoveRouteDir(const Game_Character& ch, |
| 63 | int dir, int face, |
| 64 | Args&&... args) { |
| 65 | |
| 66 | CAPTURE(dir); |
| 67 | CAPTURE(face); |
| 68 | |
| 69 | REQUIRE_EQ(ch.GetDirection(), dir); |
| 70 | REQUIRE_EQ(ch.GetFacing(), face); |
| 71 | testMoveRoute(ch, std::forward<Args>(args)...); |
| 72 | } |
| 73 | |
| 74 | template <typename... Args> |
| 75 | static void testMoveRouteMove(const Game_Character& ch, |
no test coverage detected