getPreFilledBillingAddress() public method

public getPreFilledBillingAddress ( ) : Sylius\Component\Core\Model\AddressInterface
return Sylius\Component\Core\Model\AddressInterface
コード例 #1
0
ファイル: CheckoutContext.php プロジェクト: loic425/Sylius
 /**
  * @Then /^(address "[^"]+", "[^"]+", "[^"]+", "[^"]+", "[^"]+", "[^"]+") should be filled as billing address$/
  */
 public function addressShouldBeFilledAsBillingAddress(AddressInterface $address)
 {
     Assert::true($this->addressComparator->equal($address, $this->addressPage->getPreFilledBillingAddress()));
 }