def test_calculate_hitpoints_battlefield_2(self): role_player = RolePlayer() actual = role_player.calculate_hitpoints([-1, -1, -1, 1, 1, 1]) assert actual == 4
def test_calculate_hitpoints_zac_attack_8(self): role_player = RolePlayer() actual = role_player.calculate_hitpoints_zac_attack([-1, -1, -1, 10]) assert actual == 4
def test_calculate_hitpoints_zac_style_2(self): role_player = RolePlayer() actual = role_player.calculate_hitpoints_zac_style( [-1, -1, -1, 1, 1, 1]) assert actual == 4