mirror of
https://github.com/RemainderTime/spring-boot-base-demo.git
synced 2026-02-23 14:40:45 +08:00
14 lines
227 B
Java
14 lines
227 B
Java
package cn.xf.springbootbasedemo;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
@SpringBootTest
|
|
class BaseDemoApplicationTests {
|
|
|
|
@Test
|
|
void contextLoads() {
|
|
}
|
|
|
|
}
|