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