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

getActiveCurrency() public method

public getActiveCurrency ( ) : string
return string
    public function getActiveCurrency();

Usage Example

コード例 #1
0
ファイル: CurrencyContext.php プロジェクト: origammi/Sylius
 /**
  * @Then I should (still) shop using the :currencyCode currency
  */
 public function iShouldShopUsingTheCurrency($currencyCode)
 {
     $this->homePage->open();
     Assert::same($currencyCode, $this->homePage->getActiveCurrency());
 }