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