首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

spring框架上 单元测试

2012-08-27 
spring框架下 单元测试@ContextConfiguration(locations { /applicationContext.xml })public class X

spring框架下 单元测试
@ContextConfiguration(locations = { "/applicationContext.xml" })
public class XXXTest extends AbstractJUnit4SpringContextTests {

...
@Test
public void testYYY() {
XXX xxx = new XXXImpl();
xxx .YYY();

}

热点排行