Junit

package com.thinkgem.jeesite.test;

import javax.annotation.Resource;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.thinkgem.jeesite.modules.bo.entity.BoSystemMessage;
import com.thinkgem.jeesite.modules.bo.web.BoSystemMessageController;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath*:spring-context.xml"}) 
public class Test2 extends AbstractJUnit4SpringContextTests  {
	@Resource
	BoSystemMessageController co;

	BoSystemMessage bo = new BoSystemMessage("天气","今天天气不错","1");

	@Test
	public void testSave() {
		String a=co.save(bo,null,null);
		System.out.println(a);
	}

}
我本来很不喜欢写Junit,反正我也没有学会。但是既然我项目做到这里,不得不用了,我也就义不容辞地上了。。。。

以下写的东西参考junit in Action中文版

1.可以写一个普通类,让它继承自TestCase,默认导入的是junit.framework.TestCase。我以前看的别人都是直接在IDE里面用工具执行junit4测试,这种默认用的是

org.junit.Assert下的所有方法,也不知道差别在哪里

2.书上基本上写的都是测Controller,它采用的方法是new一个Controller,再调里面的方法测数据库的连接,改天试一下吧。

================================================

工作中根本就不用原生的junit,都是用spring整合junit,在大神面前当了一回文盲。

<!-- TEST begin -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
</dependency>
<!-- TEST end -->

junit包和spring整合包。



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值