1
0
mirror of synced 2026-02-19 12:17:55 +08:00

🆕 【视频号】增加视频号小店的同意和拒绝修改地址的接口 !114

This commit is contained in:
北鹤
2023-11-15 10:24:31 +00:00
committed by Binary Wang
parent b9bd619e6f
commit 9f21f59d75
5 changed files with 69 additions and 7 deletions

View File

@@ -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();