public function testShipping()
 {
     $shipping = 12.34;
     $this->assertSame($this->entity, $this->entity->setShipping($shipping));
     $this->assertSame($shipping, $this->entity->getShipping());
 }