예제 #1
0
파일: DataTest.php 프로젝트: nja78/magento2
 public function testGetQuote()
 {
     $quoteMock = $this->getMock('\\Magento\\Quote\\Model\\Quote', [], [], '', false);
     $this->_checkoutSession->expects($this->once())->method('getQuote')->will($this->returnValue($quoteMock));
     $this->assertEquals($quoteMock, $this->_helper->getQuote());
 }