/**
  * @return void
  */
 public function testSetDateRange()
 {
     $fromDate = '1';
     $toDate = '2';
     $this->connectionMock->expects($this->at(0))->method('prepareSqlCondition')->with('`created_at`', ['from' => $fromDate, 'to' => $toDate]);
     $this->collection->setDateRange($fromDate, $toDate);
 }