hasBillingAddress() 공개 메소드

public hasBillingAddress ( Sylius\Component\Core\Model\AddressInterface $address ) : boolean
$address Sylius\Component\Core\Model\AddressInterface
리턴 boolean
예제 #1
0
 /**
  * @Then my order's billing address should be to :fullName
  */
 public function iShouldSeeThisBillingAddressAsBillingAddress($fullName)
 {
     $address = $this->sharedStorage->get('billing_address_' . StringInflector::nameToLowercaseCode($fullName));
     Assert::true($this->completePage->hasBillingAddress($address), 'Billing address is improper.');
 }