Ejemplo n.º 1
0
 public function eventOfId($id)
 {
     return $this->calendarRepo->eventOfId($id);
 }
 /**
  * @test
  * @group calendarrepo
  */
 public function should_return_null_when_event_of_id_not_found()
 {
     $id = 9999999999;
     $event = $this->calendarRepo->eventOfId($id);
     $this->assertNull($event);
 }