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