1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.ruoyi.auth;
|
| import lombok.extern.slf4j.Slf4j;
| import org.junit.jupiter.api.Test;
| import org.springframework.boot.test.context.SpringBootTest;
|
| /**
| * @author mitao
| * @date 2024/8/15
| */
| @Slf4j
| @SpringBootTest
| public class UserTokenTest {
|
|
| @Test
| public void test() {
|
| }
| }
|
|