updated a test to fail
This commit is contained in:
@@ -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),
|
||||
|
||||
@@ -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>
|
||||
```
|
||||
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user