Sylius\Behat\Page\Shop\HomePageInterface::getActiveCurrency PHP Метод

getActiveCurrency() публичный Метод

public getActiveCurrency ( ) : string
Результат string
    public function getActiveCurrency();

Usage Example

Пример #1
0
 /**
  * @Then I should (still) shop using the :currencyCode currency
  */
 public function iShouldShopUsingTheCurrency($currencyCode)
 {
     $this->homePage->open();
     Assert::same($currencyCode, $this->homePage->getActiveCurrency());
 }