欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程资源 > 编程问答 >内容正文

编程问答

框架开发中的junit单元测试

发布时间:2025/7/25 编程问答 55 豆豆
生活随笔 收集整理的这篇文章主要介绍了 框架开发中的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单元测试的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。