hasReviewTitled() public method

public hasReviewTitled ( string $title ) : boolean
$title string
return boolean
コード例 #1
0
ファイル: ProductContext.php プロジェクト: sylius/sylius
 /**
  * @Then I should not see review titled :title
  */
 public function iShouldNotSeeReviewTitled($title)
 {
     Assert::false($this->showPage->hasReviewTitled($title), sprintf('Product should not have review titled "%s" but it does.', $title));
 }