public function testAddReviewsTotalCount()
 {
     $this->selectMock->expects($this->once())->method('joinLeft')->with(['r' => 'review'], 'main_table.entity_pk_value = r.entity_pk_value', ['total_reviews' => new \Zend_Db_Expr('COUNT(r.review_id)')])->willReturnSelf();
     $this->selectMock->expects($this->once())->method('group');
     $this->model->addReviewsTotalCount();
 }