Exemplo n.º 1
0
 public function testGetTierPrice()
 {
     $product = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create('Magento\\Catalog\\Model\\Product');
     $product->load(3);
     // fixture
     // Note that this is really not the "tier price" but the "tier discount percentage"
     // so it is expected to be increasing instead of decreasing
     $this->assertEquals(8.0, $this->_model->getTierPrice(2, $product));
     $this->assertEquals(20.0, $this->_model->getTierPrice(3, $product));
     $this->assertEquals(20.0, $this->_model->getTierPrice(4, $product));
     $this->assertEquals(30.0, $this->_model->getTierPrice(5, $product));
 }
Exemplo n.º 2
0
 public function testGetTierPrice()
 {
     /** @var \Magento\Catalog\Api\ProductRepositoryInterface $productRepository */
     $productRepository = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create('Magento\\Catalog\\Api\\ProductRepositoryInterface');
     $product = $productRepository->get('bundle-product');
     // fixture
     // Note that this is really not the "tier price" but the "tier discount percentage"
     // so it is expected to be increasing instead of decreasing
     $this->assertEquals(8.0, $this->_model->getTierPrice(2, $product));
     $this->assertEquals(20.0, $this->_model->getTierPrice(3, $product));
     $this->assertEquals(20.0, $this->_model->getTierPrice(4, $product));
     $this->assertEquals(30.0, $this->_model->getTierPrice(5, $product));
 }