本文整理汇总了Python中fight.Fight.flip_coin方法的典型用法代码示例。如果您正苦于以下问题:Python Fight.flip_coin方法的具体用法?Python Fight.flip_coin怎么用?Python Fight.flip_coin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fight.Fight
的用法示例。
在下文中一共展示了Fight.flip_coin方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestFight
# 需要导入模块: from fight import Fight [as 别名]
# 或者: from fight.Fight import flip_coin [as 别名]
class TestFight(unittest.TestCase):
def setUp(self):
self.hero = Hero("Bron", 100, "DragonSlayer")
self.orc = Orc("Shapeshifter", 100, 1.5)
sword = Weapon("Sword", 10, 0.2)
axe = Weapon("Axe", 10, 0.2)
self.hero.equip_weapon(sword)
self.orc.equip_weapon(axe)
self.battle = Fight(self.hero, self.orc)
def test_fight_init(self):
self.assertEqual(self.battle.hero.name, "Bron")
self.assertEqual(self.battle.hero.health, 100)
self.assertEqual(self.battle.hero.nickname, "DragonSlayer")
self.assertEqual(self.battle.orc.name, "Shapeshifter")
self.assertEqual(self.battle.orc.health, 100)
self.assertEqual(self.battle.orc.berserk, 1.5)
def test_flip_coin(self):
flip_chances = set()
for i in range(1000):
flip_chances.add(self.battle.flip_coin())
self.assertIn(True, flip_chances)
self.assertIn(False, flip_chances)
def test_simulate_fight_hero_first(self):
entity_wins = set()
for i in range(1000):
self.battle.hero.health = 100
self.battle.orc.health = 100
entity_wins.add(self.battle.simulate_fight())
self.assertIn("Hero wins.", entity_wins)
self.assertIn("Orc wins.", entity_wins)