CoordinateReferenceSystem epsg26591 = CRS.decode("EPSG:26591");
CoordinateReferenceSystem epsg4326 = CRS.decode("EPSG:4326");
// prepare the responses
MockHttpClient client = new MockHttpClient() {
public HTTPResponse get(URL url) throws IOException {
if (url.getQuery().contains("GetCapabilities")) {
URL caps = TestData.getResource(this, "geot553capabilities.xml");
return new MockHttpResponse(caps, "text/xml");