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