コード例 #1
0
 /**
  * @When /^I delete a ("([^"]+)" promotion)$/
  * @When /^I try to delete a ("([^"]+)" promotion)$/
  */
 public function iDeletePromotion(PromotionInterface $promotion)
 {
     $this->sharedStorage->set('promotion', $promotion);
     $this->indexPage->open();
     $this->indexPage->deleteResourceOnPage(['name' => $promotion->getName()]);
 }