添加获取用户身上的标签列表的接口

This commit is contained in:
BinaryWang
2016-09-21 21:05:57 +08:00
parent 6e32028c50
commit 7e21f4692b
3 changed files with 39 additions and 0 deletions

View File

@@ -68,4 +68,12 @@ public class WxMpUserTagServiceImplTest {
System.out.println(res);
Assert.assertTrue(res);
}
@Test
public void testUserTagList() throws Exception {
List<Integer> res = this.wxService.getUserTagService().userTagList(
((ApiTestModule.WxXmlMpInMemoryConfigStorage) this.wxService.getWxMpConfigStorage()).getOpenid());
System.out.println(res);
Assert.assertNotNull(res);
}
}