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 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整合包。