*/
@Test
public void testCRS() throws FactoryException {
CRSAuthorityFactory factory = ReferencingFactoryFinder.getCRSAuthorityFactory(
"http://www.opengis.net/def", null);
GeographicCRS crs;
try {
crs = factory.createGeographicCRS("CRS:84");
fail();
} catch (NoSuchAuthorityCodeException exception) {
assertEquals("CRS:84", exception.getAuthorityCode());