/**
  * @test
  */
 public function setLessonForLessonSetsLesson()
 {
     $lesson = new Performance();
     $this->subject->setLesson($lesson);
     $this->assertSame($lesson, $this->subject->getLesson());
 }