Spring Boot提供了许多实用程序和注释来帮助您测试应用程序。
测试由两个模块提供支持:spring-boot-test包含核心项,spring-boot-test-autoconfigure支持测试的自动配置。
大多数开发人员使用spring-boot-starter-test,它会自动导入Spring Boot测试模块以及JUnit,AssertJ,Hamcrest等许多其他有用的库。
一般我们建立Spring Boot项目之后,pom.xml文件就会自带spring-boot-starter-test依赖,如果没有可以手动添加
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>
然后我们在需要测试的类或接口上使用如下步骤建立测试类
1) Ctrl + Shift + T
2)Create New Test...
3)Merber 选中需要测试的方法。
然后就会自动帮我们创建测试类,一般我们在类上加上下面两个注解就可以了
@RunWith(SpringRunner.class) @SpringBootTest
在方法上加上@Test注解就可以愉快的进行测试了
参考文档:https://docs.spring.io/spring-boot/docs/2.0.5.RELEASE/reference/htmlsingle/#boot-features-testing
原文地址:https://www.cnblogs.com/1x11/p/9734603.html
时间: 2024-10-10 08:17:49