🆕 【视频号】增加视频号小店的同意和拒绝修改地址的接口 !114
This commit is contained in:
@@ -102,6 +102,24 @@ public class WxChannelOrderServiceImplTest {
|
||||
assertTrue(response.isSuccess());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testAcceptAddressModify() throws WxErrorException {
|
||||
WxChannelOrderService orderService = channelService.getOrderService();
|
||||
String orderId = "";
|
||||
WxChannelBaseResponse response = orderService.acceptAddressModify(orderId);
|
||||
assertNotNull(response);
|
||||
assertTrue(response.isSuccess());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRejectAddressModify() throws WxErrorException {
|
||||
WxChannelOrderService orderService = channelService.getOrderService();
|
||||
String orderId = "";
|
||||
WxChannelBaseResponse response = orderService.rejectAddressModify(orderId);
|
||||
assertNotNull(response);
|
||||
assertTrue(response.isSuccess());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCloseOrder() {
|
||||
WxChannelOrderService orderService = channelService.getOrderService();
|
||||
|
||||
Reference in New Issue
Block a user