We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom Levels for asserts in the scenario file, e.g.
<customLevel level="warning">BR-CL-23</customLevel>
are ignored in the de.kosit.validationtool.api.Result object, when accessed e.g. as
de.kosit.validationtool.api.Result
for (SchematronOutput output : result.getSchematronResult()) { for (FailedAssert failedAssert : output.getFailedAsserts()) { String flag = failedAssert.getFlag(); validationErrors.addAll(failedAssert.getText().getContent().stream() .filter(x -> x instanceof String) .map(x -> (String) x) .map(x -> x + " (Level: " + flag + ")") .collect(toList())); } }
BR-CL-23 would be listed as fatal here.
The text was updated successfully, but these errors were encountered:
@JannickWeisshaupt I ran into a problem that might be related, see #129.
Sorry, something went wrong.
No branches or pull requests
Custom Levels for asserts in the scenario file, e.g.
are ignored in the
de.kosit.validationtool.api.Result
object, when accessed e.g. asBR-CL-23 would be listed as fatal here.
The text was updated successfully, but these errors were encountered: