博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Test + JUnit
阅读量:6684 次
发布时间:2019-06-25

本文共 1508 字,大约阅读时间需要 5 分钟。

hot3.png

1. pom.xml

junit
junit
4.12
test
org.springframework
spring-test
4.2.5.RELEASE

2. 定义一个测试基类:

import org.junit.runner.RunWith;import org.springframework.test.context.ContextConfiguration;import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;@RunWith(SpringJUnit4ClassRunner.class)//表示整合JUnit4进行测试@ContextConfiguration(locations={"classpath:applicationContext.xml"})//加载spring配置文件public class BaseJunit4Test {}

3. 测试类

package com.zerotest.lotus;import org.junit.Test;import org.springframework.beans.factory.annotation.Autowired;import com.sltas.application.entrance.model.EntranceParameter;import com.sltas.entrance.dao.EntranceParameterMapper;public class SpringRedisTest extends BaseJunit4Test {    @Autowired    private EntranceParameterMapper entranceParameterMapper;        @Test    public void test01() {    	EntranceParameter epm01 = new EntranceParameter();    	epm01.setCategory("aaaaaa");    	epm01.setMerchId(111261);    	epm01.setParamKey("aaa - key");    	epm01.setParamValue("aaa = value");    	entranceParameterMapper.insert(epm01);    	/*    	EntranceParameter epm = entranceParameterMapper.selectByPrimaryKey(5);        System.out.println(epm.getParamKey());        System.out.println(epm.getCategory());        System.out.println(epm.getParamValue());        */    }}

转载于:https://my.oschina.net/abbchina/blog/1973406

你可能感兴趣的文章
CentOS中nginx负载均衡和反向代理的搭建
查看>>
正则表达式用法
查看>>
ROS语音交互(四)接入图灵语义理解
查看>>
基础才是重中之重~Emit动态构建方法(参数和返回值)
查看>>
类型别名
查看>>
第十六章 模板与泛型编程
查看>>
Could not load the sandbox dll from the ASP.NET project
查看>>
Java : Spring基础 AOP
查看>>
几个危险的linux命令(转)
查看>>
C# 字符串处理小工具
查看>>
面向对象设计原则 开放封闭原则(Open Closed Principle)
查看>>
Huseyin Yilmaz
查看>>
Java加解密与数字签名
查看>>
C_数据结构_数组
查看>>
PHP 常用正则汇总
查看>>
C#泛型,实现泛型栈
查看>>
ASAS-CoMoSpA研究: 评价SpA不同分类标准的表现
查看>>
T-SQL基础(3) - 连接查询
查看>>
初学libcurl
查看>>
Java和C++通过Socket通信中文乱码的解决
查看>>