public function testSetDriversLicenseCountry()
 {
     $driversLicenseCountry = 'at';
     $this->object->setDriversLicenseCountry($driversLicenseCountry);
     $data = $this->object->getData();
     $this->assertArrayHasKey('consumerDriversLicenseCountry', $data);
     $this->assertEquals($driversLicenseCountry, $data['consumerDriversLicenseCountry']);
 }