Spring -- Spring整合Junit
Posted Z && Y
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring -- Spring整合Junit相关的知识,希望对你有一定的参考价值。
1. Spring整合Junit
1.1 原始Junit测试Spring的问题
1.2 上述问题的解决思路
1.3 Spring集成Junit步骤
1.3.1 导入相关依赖
pom.xml
<!-- 单元测试 Spring5 至少需要4.12及以上的版本-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- Spring 依赖-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.5.RELEASE</version>
</dependency>
<!-- Spring集成junit依赖-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.0.5.RELEASE</version>
</dependency>
1.3.2 使用@Runwith注解替换原来的运行期
1.3.3 使用@contextconfiguration指定配置文件或配置类
1.3.4 使用@Autowired注入需要测试的对象
1.3.5 创建测试方法进行测试
以上是关于Spring -- Spring整合Junit的主要内容,如果未能解决你的问题,请参考以下文章