更新 spring-boot 到最新的 v2.4.2 版本

This commit is contained in:
kl
2021-02-07 18:34:35 +08:00
parent 8baef0d873
commit 679459f53b
4 changed files with 16 additions and 17 deletions

View File

@@ -1,16 +1,13 @@
package cn.keking;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class ServerMainTests {
class ServerMainTests {
@Test
public void contextLoads() {
void contextLoads() {
}
}