package com.taoke.autopay;
|
|
import com.taoke.autopay.service.WxUserService;
|
import org.junit.jupiter.api.Test;
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
import javax.annotation.Resource;
|
|
/**
|
* @author hxh
|
* @title: WxUserTests
|
* @description: TODO
|
* @date 2024/6/29 13:10
|
*/
|
@SpringBootTest
|
public class WxUserTests {
|
|
@Resource
|
private WxUserService wxUserService;
|
|
@Test
|
public void addWxUser(){
|
wxUserService.login("1231231231231234");
|
}
|
|
}
|