Beispiel #1
0
 public function testIdGetterSetter()
 {
     $applicant = new Applicant();
     $id = 'test-id-1234';
     $this->assertNull($applicant->getId());
     $applicant->setId($id);
     $this->assertEquals($id, $applicant->getId());
 }