public function testSupplier()
 {
     $supplier = $this->getMock('JLM\\ProductBundle\\model\\SupplierInterface');
     $this->assertSame($this->entity, $this->entity->setSupplier($supplier));
     $this->assertSame($supplier, $this->entity->getSupplier());
 }