/**
  * Test getter/setter for value property
  */
 public function testGetSetValue()
 {
     $value = new ProductValue();
     $this->assertNull($this->price->getValue());
     $this->assertEntity($this->price->setValue($value));
     $this->assertInstanceOf('Pim\\Bundle\\CatalogBundle\\Model\\ProductValue', $this->price->getValue());
 }
 /**
  * {@inheritDoc}
  */
 public function getValue()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', array());
     return parent::getValue();
 }