hasProductOutOfStockValidationMessage() public method

public hasProductOutOfStockValidationMessage ( Sylius\Component\Core\Model\ProductInterface $product ) : boolean
$product Sylius\Component\Core\Model\ProductInterface
return boolean
Exemplo n.º 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()));
 }