/**
  * @expectedException \Exception
  * @expectedExceptionMessage Cart contains virtual product(s) only. Shipping address is not applicable
  */
 public function testGetAddressOfQuoteWithVirtualProducts()
 {
     $quoteMock = $this->getMock('\\Magento\\Quote\\Model\\Quote', [], [], '', false);
     $this->quoteRepositoryMock->expects($this->once())->method('getActive')->with('cartId')->will($this->returnValue($quoteMock));
     $quoteMock->expects($this->any())->method('isVirtual')->will($this->returnValue(true));
     $quoteMock->expects($this->never())->method('getShippingAddress');
     $this->service->get('cartId');
 }