function it_opens_country_create_page(CreatePageInterface $countryCreatePage)
 {
     $countryCreatePage->open()->shouldBeCalled();
     $this->iWantToCreateNewCountry();
 }
Ejemplo n.º 2
0
 /**
  * @When I want to add a new country
  */
 public function iWantToAddNewCountry()
 {
     $this->createPage->open();
 }
Ejemplo n.º 3
0
 /**
  * @Given I want to create new country
  */
 public function iWantToCreateNewCountry()
 {
     $this->countryCreatePage->open();
 }