🆕 微信开发平台模块增加OAuth2相关接口(网页授权、网页登录等)的实现

This commit is contained in:
Binary Wang
2020-10-19 00:18:15 +08:00
parent 77e3c8e3e8
commit 07bc5a5eac
2 changed files with 117 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
package me.chanjar.weixin.open.api.impl;
import org.testng.annotations.Test;
import static org.testng.Assert.*;
/**
* 单元测试.
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2020-10-19
*/
public class WxOpenOAuth2ServiceImplTest {
@Test
public void testBuildAuthorizationUrl() {
}
@Test
public void testGetAccessToken() {
}
@Test
public void testTestGetAccessToken() {
}
@Test
public void testRefreshAccessToken() {
}
@Test
public void testGetUserInfo() {
}
@Test
public void testValidateAccessToken() {
}
}