Sylius\Behat\Page\Shop\HomePageInterface::switchCurrency PHP 메소드

switchCurrency() 공개 메소드

public switchCurrency ( string $currencyCode )
$currencyCode string
    public function switchCurrency($currencyCode);

Usage Example

예제 #1
0
 /**
  * @When I switch to the :currencyCode currency
  * @When I change my currency to :currencyCode
  */
 public function iSwitchTheCurrencyToTheCurrency($currencyCode)
 {
     $this->homePage->open();
     $this->homePage->switchCurrency($currencyCode);
 }