0422
SpringBoot 方法测试
<dependency> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
@SpringBootTest
public class CommandTest {
@Test
public void openCommand(){
}
}
以上是 0422 的全部内容, 来源链接: utcz.com/z/515722.html