def setUp(self):
     """ Builds the heal """
     self.pkmn = BuildPokemonBattleWrapper()
     self.heal = PeriodicHeal("")
     self.hp = 32
    def setUp(self):
        """ Build the Pkmn and Heal """
        self.pkmn = BuildPokemonBattleWrapper()

        self.message = " hurt."
        self.heal = PeriodicHeal(self.message)
 def setUp(self):
     """ Builds the delegate and pkmn for use in the tests """
     self.pkmn = BuildPokemonBattleWrapper()
     self.delegate = PeriodicHealDelegate("", "")
     self.heal = PeriodicHeal("")