URL[] inputs = new URL[]{
getClass().getResource(VALIDATORS),
getClass().getResource("test2.xml")
};
FormsRootConfig config = parser.parse(inputs);
FormConfig form = config.findFormConfig("LoginForm", null);
FieldConfig field = form.getFieldConfig("password");
Iterator matchers = field.getMatchConfigs();
MatchConfig notEmpty = (MatchConfig)matchers.next();
assertEquals("notEmpty", notEmpty.getMatcherConfig().getId());