码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot 项目在 IDEA 中 进行单元测试

时间:2018-10-01 14:35:46      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:run   conf   block   程序   ocs   配置   文档   release   features   

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

Spring Boot 项目在 IDEA 中 进行单元测试

标签:run   conf   block   程序   ocs   配置   文档   release   features   

原文地址:https://www.cnblogs.com/1x11/p/9734603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!