コード例 #1
0
ファイル: ApplicantTest.php プロジェクト: meadsteve/onfido
 public function testIdGetterSetter()
 {
     $applicant = new Applicant();
     $id = 'test-id-1234';
     $this->assertNull($applicant->getId());
     $applicant->setId($id);
     $this->assertEquals($id, $applicant->getId());
 }