springboottest测试依赖和使用
1.pom依赖<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId></dependency>2.创建测试类:加运行启动注解,和springbooTest注解import o
·
1.pom依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
2.创建测试类:加运行启动注解,和springbooTest注解
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class PlusTest {
@Test
public void testQuery(){
System.out.println("SUCESS!!!");
}
}
这样就可以使用了!
欢迎观看逸轩学姐的博客,谢谢
更多推荐
已为社区贡献3条内容
所有评论(0)