欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

spring项目实现单元测试过程解析

时间:2021-04-10 08:51:55|栏目:JAVA代码|点击:

后台开发过程中,写单元测试是非常重要的,对于我们开发人员调试、排查问题是很方便的,

但是我们在启动项目的时候,需要将所以类交给spring托管,在单元测试中需要怎么实现类的注入呢?

直接上图

继续上代码

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
<br data-filtered="filtered">@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={
    "classpath:application-context.xml",
    "classpath:application-database.xml",
    "classpath:application-redis.xml"})
public class PartRelevanceTest {
	@Resource
	  private PartRelevanceMapper partRelevanceMapper;
	@Test
	  public void selectTypeNumOne() {
		PartRelevanceTypeNum record = new PartRelevanceTypeNum();
		record.setRelCode("2222112");
		record.setType("2");
		PartRelevanceTypeNum typeNum = partRelevanceMapper.selectTypeNumOne(record);
		System.out.println(typeNum==null?"typeNum-数据为空":typeNum.toString());
	}
}

上一篇:Jmail发送邮件工具类分享

栏    目:JAVA代码

下一篇:spring boot配置MySQL数据库连接、Hikari连接池和Mybatis的简单配置方法

本文标题:spring项目实现单元测试过程解析

本文地址:http://www.codeinn.net/misctech/98323.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有