Beispiel #1
0
 public function testCreatedAtGetterSetter()
 {
     $timestamp = '2015-09-10T17:16:43Z';
     $applicant = new Applicant();
     $this->assertNull($applicant->getCreatedAt());
     $applicant->setCreatedAt($timestamp);
     $this->assertEquals('2015-09-10T17:16:43Z', $applicant->getCreatedAt());
 }