/**
  * Whether tier price value fixed or percent of original price
  *
  * @param \Magento\Catalog\Model\Product\Type\Price $priceObject
  * @return bool
  */
 protected function _isPriceFixed($priceObject)
 {
     return $priceObject->isTierPriceFixed();
 }
 public function testIsTierPriceFixed()
 {
     $this->assertTrue($this->_model->isTierPriceFixed());
 }