예제 #1
0
 /**
  * test order address update
  */
 public function testAddressUpdate()
 {
     $orderAddress = $this->getMock('Magento\\Sales\\Service\\V1\\Data\\OrderAddress', [], [], '', false);
     $this->orderAddressUpdateMock->expects($this->once())->method('invoke')->with($orderAddress)->will($this->returnValue(true));
     $this->assertTrue($this->orderWrite->addressUpdate($orderAddress));
 }