updated a test to fail

This commit is contained in:
jstaerk
2023-12-30 15:07:40 +01:00
parent eba5413610
commit bd206f2f95
3 changed files with 7 additions and 6 deletions

View File

@@ -179,16 +179,15 @@ public class LibraryTest extends ResourceCase {
ZUGFeRDValidator zfv = new ZUGFeRDValidator();
String res = zfv.validate(tempFile.getAbsolutePath());
assertThat(res).valueByXPath("count(//error)")
.asInt()
.isEqualTo(0);
.isEqualTo(1);// there is an error inthe XRechnung validatoion artefacts: https://github.com/itplr-kosit/validator-configuration-xrechnung/issues/84
assertThat(res).valueByXPath("/validation/summary/@status")
.asString()
.isEqualTo("valid");// expect to be valid because XR notices are, well, only notices
.isEqualTo("invalid");// expect to be valid because XR notices are, well, only notices
assertThat(res).valueByXPath("/validation/xml/summary/@status")
.asString()
.isEqualTo("valid");
.isEqualTo("invalid");
assertThat(res).valueByXPath("count(//notice)")
.asInt()