Beispiel #1
0
 public function testCountryGetterSetter()
 {
     $country = 'USA';
     $applicant = new Applicant();
     $this->assertNull($applicant->getCountry());
     $applicant->setCountry($country);
     $this->assertEquals($country, $applicant->getCountry());
 }