}
@Test
public void testSRSConverter() throws Exception {
CoordinateReferenceSystem crs = CRS.decode("EPSG:4326");
SRSConverter c = new SRSConverter();
assertEquals("EPSG:4326", c.toString(crs));
assertFalse("EPSG:4326".equals(
c.toString(CRS.parseWKT("GEOGCS[\"GCS_WGS_1984\",DATUM[\"WGS_1984\",SPHEROID[\"WGS_1984\",6378137,298.257223563]],PRIMEM[\"Greenwich\",0],UNIT[\"Degree\",0.017453292519943295]]"))));
}