countReviews() public method

public countReviews ( ) : integer
return integer
コード例 #1
0
ファイル: ProductContext.php プロジェクト: sylius/sylius
 /**
  * @Then I should see :count product reviews
  */
 public function iShouldSeeProductReviews($count)
 {
     Assert::same((int) $count, $this->showPage->countReviews(), 'Product has %2$s reviews, but should have %s.');
 }