增加删除标签的接口

This commit is contained in:
BinaryWang
2016-09-13 19:54:03 +08:00
parent ede249643c
commit f13dcaa1fc
3 changed files with 37 additions and 0 deletions

View File

@@ -48,4 +48,11 @@ public class WxMpUserTagServiceImplTest {
Assert.assertTrue(res);
}
@Test(dependsOnMethods = { "testTagCreate" })
public void testTagDelete() throws Exception {
Boolean res = this.wxService.getUserTagService().tagDelete(this.tagId);
System.out.println(res);
Assert.assertTrue(res);
}
}