public void testKvpBasic() throws Exception {
String request = "wcs?service=WCS&version=1.1.1&request=GetCoverage" + "&identifier="
+ layerId(TASMANIA_BM)
+ "&BoundingBox=-90,-180,90,180,urn:ogc:def:crs:EPSG:4326"
+ "&GridBaseCRS=urn:ogc:def:crs:EPSG:4326" + "&format=geotiff";
MockHttpServletResponse response = getAsServletResponse(request);
// System.out.println(response.getOutputStreamContent());
// make sure we got a multipart
assertTrue(response.getContentType().matches("multipart/related;\\s*boundary=\".*\""));
// parse the multipart, check there are two parts
Multipart multipart = getMultipart(response);
assertEquals(2, multipart.getCount());