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

getActiveLocale() public method

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

Usage Example

示例#1
0
 /**
  * @Then I should (still) shop using the :localeName locale
  */
 public function iShouldShopUsingTheLocale($localeName)
 {
     $this->homePage->open();
     Assert::same($localeName, $this->homePage->getActiveLocale());
 }