博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring与Junit测试整合
阅读量:6181 次
发布时间:2019-06-21

本文共 425 字,大约阅读时间需要 1 分钟。

一、引入spring测试包:text包

二、@RunWith:指定spring对junit提供的一个运行器

  @ContextConfiguration:  locations指定spring配置文件位置

1 @RunWith(SpringJUnit4ClassRunner.class) 2 @ContextConfiguration(locations={"classpath:ApplicationContext.xml"}) 3 public class TestSpring1 { 4     @Autowired 5     private PersonService ps; 6     @Test 7     public void test1(){ 8         ps.savePerson(); 9     }10 }

 

转载于:https://www.cnblogs.com/cat-fish6/p/8698499.html

你可能感兴趣的文章
TypeScript入坑
查看>>
(三)spring cloud微服务分布式云架构-服务网关zuul初级篇
查看>>
Spring Cloud--Honghu Cloud分布式微服务云系统—System系统管理
查看>>
Linux服务器配置——SAMBA
查看>>
我的WP7应用
查看>>
js打开连接 _无需整理
查看>>
我的友情链接
查看>>
C语言结合windowsApi遍历文件
查看>>
linux 系统无法启动的基本解决方法
查看>>
Yii框架学习笔记 [PHP]
查看>>
饿了么MySQL异地多活的数据双向复制经验谈
查看>>
MySQL的btree索引和hash索引的区别
查看>>
计算机基础
查看>>
我的友情链接
查看>>
Hystrix系列-4-Hystrix的动态配置
查看>>
oracle数字函数
查看>>
myeclipse svn 分支
查看>>
ORACLE CHAR,VARCHAR,VARCHAR2,NVARCHAR类型的区别与使用
查看>>
SQL Server AlwaysOn架构及原理
查看>>
spring-session学习
查看>>