1
0
mirror of synced 2025-12-21 08:30:11 +08:00

#252 添加图文消息留言管理中打开已群发文章评论的接口

This commit is contained in:
Binary Wang
2019-06-16 23:41:08 +08:00
parent 9c149bb1e2
commit be78d8c125
6 changed files with 113 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
package me.chanjar.weixin.mp.api.impl;
import com.google.inject.Inject;
import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.mp.api.WxMpService;
import me.chanjar.weixin.mp.api.test.ApiTestModule;
import org.testng.annotations.Guice;
import org.testng.annotations.Test;
/**
* 测试类.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2019-06-16
*/
@Test
@Guice(modules = ApiTestModule.class)
public class WxMpCommentServiceImplTest {
@Inject
private WxMpService wxService;
@Test
public void testOpen() throws WxErrorException {
this.wxService.getCommentService().open(1, null);
this.wxService.getCommentService().open(1, 0);
}
}