1
0
mirror of synced 2025-12-22 08:59:23 +08:00

添加查询门店类目列表的接口, for issue #17

This commit is contained in:
BinaryWang
2016-09-28 20:20:17 +08:00
parent 460a52be10
commit 8a5fdb1717
3 changed files with 38 additions and 0 deletions

View File

@@ -56,6 +56,12 @@ public class WxMpStoreServiceImplTest {
this.wxMpService.getStoreService().delete("463558057");
}
public void testListCategories() throws WxErrorException {
List<String> result = this.wxMpService.getStoreService().listCategories();
assertNotNull(result);
System.err.println(result);
}
public void testList() throws WxErrorException {
WxMpStoreListResult result = this.wxMpService.getStoreService().list(0, 10);
assertNotNull(result);