读书人

The /WEB-INF/web.xml was not found

发布时间: 2012-08-26 16:48:06 作者: rapoo

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的测试了.

读书人网 >Web前端

热点推荐