Beispiel #1
0
 public function testHrefGetterSetter()
 {
     $href = 'http://google.com';
     $applicant = new Applicant();
     $this->assertNull($applicant->getHref());
     $applicant->setHref($href);
     $this->assertEquals($href, $applicant->getHref());
 }