示例#1
0
 /**
  * Run tests to ensure the output is correct for set/getNotes
  *
  * @return void
  */
 public function testNotes()
 {
     $schedule = new Schedule();
     $schedule->setNotes("Some notes and stuff!");
     $this->assertEquals("Some notes and stuff!", $schedule->getNotes());
 }