*
* @return Test
*/
public static Test suite()
{
JettyTestCaseDecorator deco = (JettyTestCaseDecorator) suite(WithCPWithoutFPTest.class);
deco.setContextPath("/somecontext");
String basedir = System.getProperty("basedir");
String path = "";
if (basedir != null)
path = basedir + "/";
path += "src/main/testwebapp2";
deco.setWebappLocation(path);
return deco;
}