/**
  * @depends testGetProduct
  */
 public function testGetMxxPrice(Product $product)
 {
     $this->assertNotNull($product->getMinPrice());
     $this->assertInternalType('int', $product->getMinPrice());
     $this->assertNotNull($product->getMaxPrice());
     $this->assertInternalType('int', $product->getMaxPrice());
 }