コード例 #1
0
ファイル: AddressBookContext.php プロジェクト: sylius/sylius
 /**
  * @Then I should be unable to edit their address
  */
 public function iShouldBeUnableToEditTheirAddress()
 {
     $address = $this->getAddressOf($this->sharedStorage->getLatestResource());
     Assert::false($this->addressBookUpdatePage->isOpen(['id' => $address->getId()]), sprintf('I should be unable to edit the address of "%s %s"', $address->getFirstName(), $address->getLastName()));
 }