/**
  * @test
  */
 public function noteCanBeSet()
 {
     $note = 'foo';
     $this->subject->setNote($note);
     $this->assertSame($note, $this->subject->getNote());
 }