diff --git a/CHANGELOG.md b/CHANGELOG.md index b3282b5..6d77973 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + ## 1.3.1 ### Fixed -- failed-asserts are not evaluated correctly while computing overall acceptance +- `getFailedAsserts()` and `isSchematronValid()` in [DefaultResult.java](https://github.com/itplr-kosit/validator/blob/master/src/main/java/de/kosit/validationtool/impl/DefaultResult.java) +do not reflect actual schematron validation result ### Changed - engine info contains version number of the validator (configurations can output this in the report for maintainance puposes) @@ -27,7 +29,7 @@ the validator (this further improves performance and memory consumption) ## 1.2.1 ### Fixed -- Validator was creating invalid createReportInput xml in case of no scenrio match +- Validator is creating invalid createReportInput xml in case of no scenario match ## 1.2.0 diff --git a/src/test/java/de/kosit/validationtool/impl/DefaultCheckTest.java b/src/test/java/de/kosit/validationtool/impl/DefaultCheckTest.java index 62d94dd..c533eb8 100644 --- a/src/test/java/de/kosit/validationtool/impl/DefaultCheckTest.java +++ b/src/test/java/de/kosit/validationtool/impl/DefaultCheckTest.java @@ -91,7 +91,6 @@ public class DefaultCheckTest { public void testMultipleCase() { final List input = IntStream.range(0, MULTI_COUNT).mapToObj(i -> read(Simple.SIMPLE_VALID)).collect(Collectors.toList()); final List docs = this.implementation.checkInput(input); - assertThat(docs).isNotNull(); assertThat(docs).hasSize(MULTI_COUNT); } @@ -99,7 +98,6 @@ public class DefaultCheckTest { public void testMultipleCaseDocument() { final List input = IntStream.range(0, MULTI_COUNT).mapToObj(i -> read(Simple.SIMPLE_VALID)).collect(Collectors.toList()); final List docs = this.implementation.check(input); - assertThat(docs).isNotNull(); assertThat(docs).hasSize(MULTI_COUNT); }