Sylius\Behat\Page\Shop\Cart\SummaryPageInterface::hasProductOutOfStockValidationMessage PHP Метод

hasProductOutOfStockValidationMessage() публичный Метод

public hasProductOutOfStockValidationMessage ( Sylius\Component\Core\Model\ProductInterface $product ) : boolean
$product Sylius\Component\Core\Model\ProductInterface
Результат boolean
    public function hasProductOutOfStockValidationMessage(ProductInterface $product);

Usage Example

Пример #1
0
 /**
  * @Then /^I should not be notified that (this product) cannot be updated$/
  */
 public function iShouldNotBeNotifiedThatThisProductCannotBeUpdated(ProductInterface $product)
 {
     Assert::false($this->summaryPage->hasProductOutOfStockValidationMessage($product), sprintf('I should see validation message for %s product', $product->getName()));
 }