Merge pull request #1018 from pgjacobs/issue536

Fix for #536: Support for BT-18
This commit is contained in:
Jochen Staerk
2026-02-04 13:22:03 +01:00
committed by GitHub
4 changed files with 76 additions and 7 deletions

View File

@@ -176,6 +176,38 @@ public class ZF2EdgeTest extends MustangReaderTestCase {
};
}
@Override
public IReferencedDocument getObjectIdentifierReferencedDocument() {
return new IReferencedDocument() {
@Override
public String getIssuerAssignedID() {
return "gPogKLtac0";
}
@Override
public String getTypeCode() {
return "130";
}
@Override
public String getReferenceTypeCode() {
return "";
}
@Override
public Date getFormattedIssueDateTime() {
SimpleDateFormat sdf=new SimpleDateFormat("YYYY-mm-dd");
try {
return sdf.parse("2026-01-26");
} catch (ParseException e) {
throw new RuntimeException(e);
}
}
};
}
@Override
public String getOwnLocation() {
return "Stadthausen";