框架开发中的junit单元测试

Posted H.U.C-王子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了框架开发中的junit单元测试相关的知识,希望对你有一定的参考价值。

首先写一个测试用的公共类,如果要搭建测试环境,只要继承这个公共类就能很容易的实现单元测试,代码如下

import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

/**
 * 测试共公类
 * @author SMN
 *
 */
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:application-context.xml")
public class SpringJunitTest {

}

搭建的测试环境如下:

package cn.itcast;

import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;

import cn.itcast.common.junit.SpringJunitTest;
import cn.itcast.core.bean.TestTb;
import cn.itcast.core.service.TestTbService;

/**
 * 测试
 * @author SMN
 *
 */

public class TestTestTb extends SpringJunitTest{

    @Autowired
    private TestTbService testTbService;
    @Test
    public void testAdd() throws Exception {
        TestTb testTb = new TestTb();   //测试用实体类
        testTb.setName("金乐乐");
        
        testTbService.addTestTb(testTb);
    }
}

 

以上是关于框架开发中的junit单元测试的主要内容,如果未能解决你的问题,请参考以下文章

junit框架——单元测试

-单元测试框架-Junit

-单元测试框架-Junit

JUnitJava 单元测试框架 | 学习笔记

junit-单元测试

JUnit单元测试