框架开发中的junit单元测试
生活随笔
收集整理的這篇文章主要介紹了
框架开发中的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{@Autowiredprivate TestTbService testTbService;@Testpublic void testAdd() throws Exception {TestTb testTb = new TestTb(); //測試用實體類testTb.setName("金樂樂");testTbService.addTestTb(testTb);} }?
轉載于:https://www.cnblogs.com/lm970585581/p/7426670.html
總結
以上是生活随笔為你收集整理的框架开发中的junit单元测试的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 数据库系统实现 第六章 查询执行
- 下一篇: 正则重温(学习笔记)