getActiveCurrency() public méthode

public getActiveCurrency ( ) : string
Résultat string
Exemple #1
0
 /**
  * @Then I should (still) shop using the :currencyCode currency
  */
 public function iShouldShopUsingTheCurrency($currencyCode)
 {
     $this->homePage->open();
     Assert::same($currencyCode, $this->homePage->getActiveCurrency());
 }