*/
public class GetCapabilitiesRequestTest extends ServerTestCase {
public void testGetCapabilitiesRequest() throws Exception {
URL testURL = new URL(
"http://office.refractions.net:4001/cgi-bin/mapserv?map=/opt/dra2/orthophotos/tiles.map&");
AbstractGetCapabilitiesRequest request = new Request(testURL);
URL finalURL = request.getFinalURL();
int index = finalURL.toExternalForm().lastIndexOf("?");
String urlWithoutQuery = null;
urlWithoutQuery = finalURL.toExternalForm().substring(0, index);