当前位置: 代码迷 >> Web前端 >> The /WEB-INF/web.xml was not found MockStrutsTestCase有关问题
  详细解决方案

The /WEB-INF/web.xml was not found MockStrutsTestCase有关问题

热度:199   发布时间:2012-08-26 16:48:06.0
The /WEB-INF/web.xml was not found MockStrutsTestCase问题

?

在eclipse这样的环境中,?MockStrutsTestCase中的是不能直接调用默认的Web-inf目录的.

因为:我们通常建立的web?project都在项目下加入了WebRoot作为输出的路径.

那么在测试用例中覆盖setup方法:

?

protected void setUp() throws Exception {
  
  super.setUp();
   setContextDirectory(new File("WebRoot"));
  this.setConfigFile("/WEB-INF/struts-config.xml");
 }
?

这样就可以进行action的测试了.

  相关解决方案