public function testIdProperty()
 {
     $value = 42;
     $customerEntity = new \Customer\Entity\CustomerEntity();
     $customerEntity->setId($value);
     $this->assertSame($value, $customerEntity->getId());
 }