assertEquals("name", "EPSG:name", identifier.toInternationalString().toString(Locale.ENGLISH));
assertEquals("name", "EPSG:nom", identifier.toInternationalString().toString(Locale.FRENCH));
assertEquals("name", "EPSG:名前", identifier.toInternationalString().toString(Locale.JAPANESE));
// Scope (derived from the autority)
final NameSpace scope = identifier.scope();
assertFalse ("scope", scope.isGlobal());
assertEquals("scope", "EPSG", scope.name().toString());
}