/**
  * @test
  * @group courserepo
  */
 public function should_return_4_courses()
 {
     $courses = $this->courseRepo->all();
     $this->assertCount(4, $courses);
 }