1
0
mirror of synced 2026-04-10 02:28:52 +08:00

🎨 #3569 【视频号】微信小店-订单详情查询接口增加参数

This commit is contained in:
altusea
2025-05-13 22:52:24 +08:00
committed by GitHub
parent 04c162f03a
commit 2762a98279
4 changed files with 61 additions and 13 deletions

View File

@@ -45,6 +45,16 @@ public class WxChannelOrderServiceImplTest {
assertTrue(response.isSuccess());
}
@Test
public void testGetOrder2() throws WxErrorException {
WxChannelOrderService orderService = channelService.getOrderService();
String orderId = "";
boolean encodeSensitiveInfo = true;
OrderInfoResponse response = orderService.getOrder(orderId, encodeSensitiveInfo);
assertNotNull(response);
assertTrue(response.isSuccess());
}
@Test
public void testGetOrders() throws WxErrorException {
WxChannelOrderService orderService = channelService.getOrderService();