File: /home/petsclubcc/magento/dev/tests/integration/testsuite/Magento/Catalog/Model/ProductPriceTest.php
<?php
/**
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Tests product model:
* - pricing behaviour is tested
*
* @see \Magento\Catalog\Model\ProductTest
* @see \Magento\Catalog\Model\ProductExternalTest
*/
namespace Magento\Catalog\Model;
class ProductPriceTest extends \PHPUnit_Framework_TestCase
{
/**
* @var \Magento\Catalog\Model\Product
*/
protected $_model;
protected function setUp()
{
$this->_model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
'Magento\Catalog\Model\Product'
);
}
public function testGetPrice()
{
$this->assertEmpty($this->_model->getPrice());
$this->_model->setPrice(10.0);
$this->assertEquals(10.0, $this->_model->getPrice());
}
public function testGetPriceModel()
{
$default = $this->_model->getPriceModel();
$this->assertInstanceOf('Magento\Catalog\Model\Product\Type\Price', $default);
$this->assertSame($default, $this->_model->getPriceModel());
}
/**
* See detailed tests at \Magento\Catalog\Model\Product\Type*_PriceTest
*/
public function testGetTierPrice()
{
$this->assertEquals([], $this->_model->getTierPrice());
}
/**
* See detailed tests at \Magento\Catalog\Model\Product\Type*_PriceTest
*/
public function testGetTierPriceCount()
{
$this->assertEquals(0, $this->_model->getTierPriceCount());
}
/**
* See detailed tests at \Magento\Catalog\Model\Product\Type*_PriceTest
*/
public function testGetFormatedPrice()
{
$this->assertEquals('<span class="price">$0.00</span>', $this->_model->getFormatedPrice());
}
public function testSetGetFinalPrice()
{
$this->assertEquals(0, $this->_model->getFinalPrice());
$this->_model->setFinalPrice(10);
$this->assertEquals(10, $this->_model->getFinalPrice());
}
}