118119120121122123124125
} } public void testInternalAndInternal() throws Exception { if (this.enabledServerInternal && this.enabledClientInternal) { runTest(new HttpServerHelper(null), new HttpClientHelper(null)); } }
139140141142143144145146
} public void testJettyAndInternal() throws Exception { if (this.enabledServerJetty && this.enabledClientInternal) { runTest(new org.restlet.ext.jetty.HttpServerHelper(null), new HttpClientHelper(null)); } }
160161162163164165166167
} public void testSimpleAndInternal() throws Exception { if (this.enabledServerSimple && this.enabledClientInternal) { runTest(new org.restlet.ext.simple.HttpServerHelper(null), new HttpClientHelper(null)); } }