Uses of Class
org.xmlunit.validation.ValidationProblem
-
Packages that use ValidationProblem Package Description org.custommonkey.xmlunit Root of the XMLUnit 1.x compatibility layer.org.custommonkey.xmlunit.jaxp13 org.xmlunit.assertj.error Contains internal classes of XMLUnit's AssertJ support that are only public as an implementation detail.org.xmlunit.validation Validation of XML documents and schemas. -
-
Uses of ValidationProblem in org.custommonkey.xmlunit
Methods in org.custommonkey.xmlunit with parameters of type ValidationProblem Modifier and Type Method Description private void
Validator. validationProblem(ValidationProblem p)
-
Uses of ValidationProblem in org.custommonkey.xmlunit.jaxp13
Method parameters in org.custommonkey.xmlunit.jaxp13 with type arguments of type ValidationProblem Modifier and Type Method Description private static java.util.List<org.xml.sax.SAXParseException>
Validator. problemToExceptionList(java.lang.Iterable<ValidationProblem> problems)
-
Uses of ValidationProblem in org.xmlunit.assertj.error
Method parameters in org.xmlunit.assertj.error with type arguments of type ValidationProblem Modifier and Type Method Description static ShouldBeValid
ShouldBeValid. shouldBeValid(java.lang.String systemId, java.lang.Iterable<ValidationProblem> problems)
-
Uses of ValidationProblem in org.xmlunit.validation
Fields in org.xmlunit.validation with type parameters of type ValidationProblem Modifier and Type Field Description private java.util.List<ValidationProblem>
ValidationHandler. problems
private java.lang.Iterable<ValidationProblem>
ValidationResult. problems
Methods in org.xmlunit.validation that return ValidationProblem Modifier and Type Method Description (package private) static ValidationProblem
ValidationProblem. fromException(org.xml.sax.SAXParseException e, ValidationProblem.ProblemType type)
Methods in org.xmlunit.validation that return types with arguments of type ValidationProblem Modifier and Type Method Description java.lang.Iterable<ValidationProblem>
ValidationResult. getProblems()
Retrieves the problems that have been found.Constructor parameters in org.xmlunit.validation with type arguments of type ValidationProblem Constructor Description ValidationResult(boolean valid, java.lang.Iterable<ValidationProblem> problems)
Creates a result based on a valid flag and an Iterable of iteration problems.
-