添加批量为用户取消标签的接口

This commit is contained in:
BinaryWang
2016-09-21 20:54:17 +08:00
parent 9780d651d6
commit 6e32028c50
3 changed files with 35 additions and 2 deletions

View File

@@ -62,9 +62,9 @@ public class WxMpUserTagServiceImplTest {
}
@Test
public void testBatchTagging() throws Exception {
public void testBatchUntagging() throws Exception {
String[] openids = new String[]{((ApiTestModule.WxXmlMpInMemoryConfigStorage) this.wxService.getWxMpConfigStorage()).getOpenid()};
boolean res = this.wxService.getUserTagService().batchTagging(this.tagId, openids);
boolean res = this.wxService.getUserTagService().batchUntagging(this.tagId, openids);
System.out.println(res);
Assert.assertTrue(res);
}