Skip to content

Commit

Permalink
updated a test to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
jstaerk committed Dec 30, 2023
1 parent eba5413 commit bd206f2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 3 additions & 1 deletion History.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
2.10.0
-
=======
2023-12-30

- also accept pdf/a3 from inputstream
- closes #354 factur-x 1 from commandline
- support XR 3.0.1 (#343),
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ If you setup a Maven project, you can grab the artifacts using
<dependency>
<groupId>org.mustangproject</groupId>
<artifactId>library</artifactId>
<version>2.6.1</version>
<version>2.10.0</version>
</dependency>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,16 +179,15 @@ public void testXRValidation() {
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()
Expand Down

0 comments on commit bd206f2

Please sign in to comment.