public function testCountryProperty()
 {
     $value = 'de';
     $customerEntity = new \Customer\Entity\CustomerEntity();
     $customerEntity->setCountry($value);
     $this->assertSame($value, $customerEntity->getCountry());
 }