Beispiel #1
0
 public function testLastNameGetterSetter()
 {
     $name = 'Testerston';
     $applicant = new Applicant();
     $this->assertNull($applicant->getLastName());
     $applicant->setLastName($name);
     $this->assertEquals($name, $applicant->getLastName());
 }