You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
433 B
23 lines
433 B
package {{ package.Base }};
|
|
|
|
/***
|
|
* @description {{ projectName }}
|
|
* @version 1.0.0
|
|
* @Author: {{author}}
|
|
* @Date: {{date}}
|
|
* @Wechat: {{ wechat }}
|
|
*/
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
import java.io.IOException;
|
|
|
|
@SpringBootTest
|
|
class ApplicationTests {
|
|
|
|
@Test
|
|
void contextLoads() throws IOException {
|
|
System.out.println("test start");
|
|
}
|
|
|
|
}
|
|
|