/**
  * @test
  * @group courserepo
  */
 public function should_return_null_when_id_not_found()
 {
     $id = 9999999;
     $course = $this->courseRepo->courseOfId($id);
     $this->assertNull($course);
 }