testing = Errors.getResources(Locale.ENGLISH);
final LogRecord record = testing.getLogRecord(Level.FINE, Errors.Keys.NullArgument_1, "CRS");
assertEquals("NullArgument_1", record.getMessage());
final SimpleFormatter formatter = new SimpleFormatter();
final String message = formatter.format(record);
assertTrue(message.contains("Argument ‘CRS’ shall not be null."));
testing = null;
}
/**