getActiveCurrency() 공개 메소드

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