Ejemplo n.º 1
0
 /**
  * @Then /^province with code "([^"]*)" should not be added in (this country)$/
  */
 public function provinceWithCodeShouldNotBeAdded($provinceCode, CountryInterface $country)
 {
     $this->updatePage->open(['id' => $country->getId()]);
     Assert::false($this->updatePage->isThereProvinceWithCode($provinceCode), sprintf('%s is a province of this country.', $provinceCode));
 }