hasReviewTitled() public method

public hasReviewTitled ( string $title ) : boolean
$title string
return boolean
Esempio n. 1
0
 /**
  * @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));
 }