static final String[] URLS = {"http://localhost:9990", "http://localhost:8080/_ah/admin", "http://capedwarf-test.appspot.com/index.html"};
static final ResponseHandler NOOP = new NoopResponseHandler();
@Deployment
public static Archive getDeployment() {
TestContext context = new TestContext();
context.setWebXmlFile("uf-web.xml");
WebArchive war = getTckDeployment(context);
war.addClasses(URLFetchTestBase.class);
war.addPackage(FetchServlet.class.getPackage());
war.add(new StringAsset("<html><body>Google AppEngine TCK</body></html>"), "index.html");
return war;