Skip to content

Commit

Permalink
MAGETWO-36426: Magento\Quote\Api\GuestCartTotalRepository
Browse files Browse the repository at this point in the history
- minor changes. removed excessive code
  • Loading branch information
arkadiych committed Apr 22, 2015
1 parent eaef407 commit 692b42e
Showing 1 changed file with 2 additions and 8 deletions.
Expand Up @@ -36,23 +36,17 @@ class GuestCartTotalRepositoryTest extends \PHPUnit_Framework_TestCase
/**
* @var string
*/
protected $maskedCartId = 'f216207248d65c789b17be8545e0aa73';
protected $maskedCartId;

/**
* @var int
*/
protected $cartId = 12;
protected $cartId;

public function setUp()
{
$this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);

$this->quoteIdMaskFactoryMock = $this->getMockBuilder('Magento\Quote\Model\QuoteIdMaskFactory')
->disableOriginalConstructor()
->getMock();
$this->quoteIdMaskMock = $this->getMockBuilder('Magento\Quote\Model\QuoteIdMask')
->disableOriginalConstructor()
->getMock();
$this->cartTotalRepository = $this->getMockBuilder('Magento\Quote\Api\CartTotalRepositoryInterface')
->disableOriginalConstructor()
->getMock();
Expand Down

0 comments on commit 692b42e

Please sign in to comment.