| 100 | } |
| 101 | |
| 102 | static void testModBaseLimits(Game_Actor& actor, int hp, int base) { |
| 103 | REQUIRE_EQ(actor.GetMaxHpMod(), hp); |
| 104 | REQUIRE_EQ(actor.GetMaxSpMod(), base); |
| 105 | REQUIRE_EQ(actor.GetAtkMod(), base); |
| 106 | REQUIRE_EQ(actor.GetDefMod(), base); |
| 107 | REQUIRE_EQ(actor.GetSpiMod(), base); |
| 108 | REQUIRE_EQ(actor.GetAgiMod(), base); |
| 109 | } |
| 110 | |
| 111 | static void testLimits(int hp, int base, int battle) { |
| 112 | SUBCASE("limit values") { |
no test coverage detected