add test
This commit is contained in:
parent
3c8b7ef544
commit
94c2a2875f
|
@ -29,6 +29,12 @@
|
|||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
/**
|
||||
* @author : wh
|
||||
* @date : 2023/12/26 15:13
|
||||
* @description:
|
||||
*/
|
||||
public class Test {
|
||||
|
||||
@org.junit.jupiter.api.Test
|
||||
public void test() {
|
||||
System.out.println("hahah");
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue