SpringBoot 单元测试
Posted 谢世林
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot 单元测试相关的知识,希望对你有一定的参考价值。
SpringBoot 单元测试
依赖注入
引入依赖:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>
这里引入了一个spring-boot-starter-test依赖,是springboot中写单测所需要的。
在单元测试类上添加@RunWith(SpringRunner.class)、@SpringBootTest注解:
在单元测试类上添加@RunWith(SpringRunner.class)、@SpringBootTest注解:
以上是关于SpringBoot 单元测试的主要内容,如果未能解决你的问题,请参考以下文章
java中springboot集成junit编写单元测试(实战+坑)