Ejemplo n.º 1
0
 public function testIsNotUpdatedFlags()
 {
     $user = null;
     $date = null;
     $note = new Note();
     $note->setUpdatedBy($user);
     $note->setUpdatedAt($date);
     $this->assertFalse($note->isUpdatedBySet());
     $this->assertFalse($note->isUpdatedAtSet());
 }