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

getContents() public method

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

Usage Example

Exemplo n.º 1
0
 /**
  * @Then I should not see a homepage from :theme theme
  */
 public function iShouldNotSeeThemedHomepage(ThemeInterface $theme)
 {
     $content = file_get_contents(rtrim($theme->getPath(), '/') . '/SyliusShopBundle/views/Homepage/index.html.twig');
     Assert::notSame($this->homePage->getContents(), $content);
 }
All Usage Examples Of Sylius\Behat\Page\Shop\HomePageInterface::getContents