spring boot 单元测试 --- 在测试了使用 javabean注解操作接口
Posted 岑惜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 单元测试 --- 在测试了使用 javabean注解操作接口相关的知识,希望对你有一定的参考价值。
1.依赖包
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>
2.在测试了添加注解
@RunWith(SpringRunner.class) @SpringBootTest
3.使用
以上是关于spring boot 单元测试 --- 在测试了使用 javabean注解操作接口的主要内容,如果未能解决你的问题,请参考以下文章
spring boot 单元测试 --- 在测试了使用 javabean注解操作接口