/**
  * @Then /^(this product review) should no longer exist in the registry$/
  */
 public function thisProductReviewShouldNoLongerExistInTheRegistry(ReviewInterface $productReview)
 {
     Assert::false($this->indexPage->isSingleResourceOnPage(['title' => $productReview->getTitle()]), sprintf('Product review with title "%s" should no longer exist in the registry.', $productReview->getTitle()));
 }