public function testDesignation()
 {
     $this->assertSame($this->entity, $this->entity->setDesignation('Foo'));
     $this->assertSame('Foo', $this->entity->getDesignation());
     $this->assertSame('Foo', $this->entity->__toString());
 }