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"); } }