InputStream in = null;
ValidatorResources resources = null;
try {
in = this.getClass().getResourceAsStream("TestNumber-config.xml");
resources = new CustomValidatorResources(in);
} catch(Exception e) {
fail("Error loading resources: " + e);
} finally {
try {
if (in != null) {