protected function setUp()
 {
     parent::setUp();
     // Update heroes to Priest vs Warrior
     $this->board->getMe()->setHero(new AnduinWrynn());
     // Priest hero
     $this->board->getOpponent()->setHero(new GarroshHellscream());
     // Warrior hero
     // Update hero and hero power references
     $this->board->updatePlayers();
 }
 protected function setUp()
 {
     parent::setUp();
     // Update heroes to Shaman vs Warrior
     $this->board->getMe()->setHero(new Thrall());
     // Shaman hero
     $this->board->getOpponent()->setHero(new GarroshHellscream());
     // Warrior hero
     // Update hero and hero power references
     $this->board->updatePlayers();
 }
 protected function setUp()
 {
     parent::setUp();
     $this->entity = new TheCoin(['board' => $this->board, 'owner' => $this->board->getOpponent()]);
 }
 protected function setUp()
 {
     parent::setUp();
     $this->entity = new ZombieChow(['board' => $this->board, 'owner' => $this->board->getMe()]);
 }