1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.supersavedriving.user;
|
| import org.junit.runner.RunWith;
| import org.springframework.boot.test.context.SpringBootTest;
| import org.springframework.test.context.junit4.SpringRunner;
|
| /**
| * @author zhibing.pu
| * @date 2023/5/29 10:20
| */
| @RunWith(SpringRunner.class)
| @SpringBootTest
| public class GunsApplicationTest {
|
|
| // public void
|
|
|
| }
|
|