/**
* Test when source has some bad values
*/
public void testBadSource1() {
Source src = new Source("bad xref");
src.recIdNumber = new StringWithCustomTags("");
AbstractValidator av = new SourceValidator(rootValidator, src);
av.validate();
assertFindingsContain(Severity.ERROR, "record id", "source", "blank");
assertFindingsContain(Severity.ERROR, "xref", "source", "start", "at", "sign");