Sylius\Behat\Page\Shop\HomePageInterface::getActiveLocale PHP Méthode

getActiveLocale() public méthode

public getActiveLocale ( ) : string
Résultat string
    public function getActiveLocale();

Usage Example

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