Elcodi\Store\ProductBundle\Behat\Context::iShouldSeeMoreThanXProducts PHP Method

iShouldSeeMoreThanXProducts() public method

public iShouldSeeMoreThanXProducts ( $numberOfProducts )
    public function iShouldSeeMoreThanXProducts($numberOfProducts)
    {
        $elements = $this->getItemElements();
        if (count($elements) <= $numberOfProducts) {
            throw new Exception(sprintf('Displayed %d products, minimum expected %d', count($elements), $numberOfProducts + 1));
        }
    }