private function clearDatabase()
 {
     $this->books->clear();
     $this->reservations->clear();
 }
 /** {@inheritdoc} */
 protected function setUp()
 {
     $this->repository = new LocalReservationRepository();
     $this->repository->clear();
 }
 /** {@inheritdoc} */
 protected function setUp()
 {
     $this->repository = new LocalReservationRepository();
     $this->repository->clear();
     $this->projection = new LocalListReservationsForBookProjection();
 }