protected function setUp()
 {
     $this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
     $this->cartTotalRepository = $this->getMockBuilder('Magento\\Quote\\Api\\CartTotalRepositoryInterface')->disableOriginalConstructor()->getMock();
     $this->maskedCartId = 'f216207248d65c789b17be8545e0aa73';
     $this->cartId = 123;
     $guestCartTestHelper = new GuestCartTestHelper($this);
     list($this->quoteIdMaskFactoryMock, $this->quoteIdMaskMock) = $guestCartTestHelper->mockQuoteIdMask($this->maskedCartId, $this->cartId);
     $this->model = $this->objectManager->getObject('Magento\\Quote\\Model\\GuestCart\\GuestCartTotalRepository', ['cartTotalRepository' => $this->cartTotalRepository, 'quoteIdMaskFactory' => $this->quoteIdMaskFactoryMock]);
 }
 protected function setUp()
 {
     $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
     $this->shippingMethodManagementMock = $this->getMock('Magento\\Quote\\Model\\ShippingMethodManagement', [], [], '', false);
     $this->maskedCartId = 'f216207248d65c789b17be8545e0aa73';
     $this->cartId = 867;
     $guestCartTestHelper = new GuestCartTestHelper($this);
     list($this->quoteIdMaskFactoryMock, $this->quoteIdMaskMock) = $guestCartTestHelper->mockQuoteIdMask($this->maskedCartId, $this->cartId);
     $this->model = $objectManager->getObject('Magento\\Quote\\Model\\GuestCart\\GuestShippingMethodManagement', ['shippingMethodManagement' => $this->shippingMethodManagementMock, 'quoteIdMaskFactory' => $this->quoteIdMaskFactoryMock]);
 }
 /**
  * @return void
  */
 protected function setUp()
 {
     $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
     $this->addressMock = $this->getMock('\\Magento\\Quote\\Model\\Quote\\Address', [], [], '', false);
     $this->billingAddressManagementMock = $this->getMock('Magento\\Quote\\Api\\BillingAddressManagementInterface', [], [], '', false);
     $this->maskedCartId = 'f216207248d65c789b17be8545e0aa73';
     $this->cartId = 123;
     $guestCartTestHelper = new GuestCartTestHelper($this);
     list($this->quoteIdMaskFactoryMock, $this->quoteIdMaskMock) = $guestCartTestHelper->mockQuoteIdMask($this->maskedCartId, $this->cartId);
     $this->model = $objectManager->getObject('Magento\\Quote\\Model\\GuestCart\\GuestBillingAddressManagement', ['quoteIdMaskFactory' => $this->quoteIdMaskFactoryMock, 'billingAddressManagement' => $this->billingAddressManagementMock]);
 }