Sylius\Behat\Page\Shop\HomePageInterface::getAvailableCurrencies PHP Method

getAvailableCurrencies() public method

public getAvailableCurrencies ( ) : array
return array
    public function getAvailableCurrencies();

Usage Example

示例#1
0
 /**
  * @Then I should not be able to shop using the :currencyCode currency
  */
 public function iShouldNotBeAbleToShopUsingTheCurrency($currencyCode)
 {
     $this->homePage->open();
     if (in_array($currencyCode, $this->homePage->getAvailableCurrencies(), true)) {
         throw new \InvalidArgumentException(sprintf('Expected "%s" not to be in "%s"', $currencyCode, implode('", "', $this->homePage->getAvailableCurrencies())));
     }
 }