您的位置:软件测试 > 开源软件测试 > 开源单元测试工具 > junit
Junit手动/自动加载spring配置文件
作者:网络转载 发布时间:[ 2015/9/22 14:25:01 ] 推荐标签:软件测试工具 单元测试工具

  分配置文件在classpath下和web-inf下两种情况的加载:
ApplicationContext context = new FileSystemXmlApplicationContext("WebRoot/WEB-INF/applicationContext.xml");
new ClassPathXmlApplicationContext("applicationContext.xml");// 从classpath中加载
new FileSystemXmlApplicationContext("classpath:地址");// 没有classpath表示当前目录
  注解加载
@org.springframework.test.context.ContextConfiguration(locations={"file:WebRoot/WEB-INF/applicationContext.xml"})
@org.springframework.test.context.ContextConfiguration(locations={"classpath:applicationContext.xml"})
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"classpath:/ut/applicationContext.xml"})
public class ScanDecisionFileTest {
@Before
public void setUp() throws Exception {
}
@After
public void tearDown() throws Exception {
}
@Test
public void testRun() {
//fail("Not yet implemented");
}
}

软件测试工具 | 联系我们 | 投诉建议 | 诚聘英才 | 申请使用列表 | 网站地图
沪ICP备07036474 2003-2017 版权所有 上海泽众软件科技有限公司 Shanghai ZeZhong Software Co.,Ltd