Package | Description |
---|---|
org.xmlunit.assertj |
AssertJ assertions on top of XMLUnit's core.
|
Modifier and Type | Method and Description |
---|---|
(package private) static MultipleNodeAssert |
MultipleNodeAssert.create(java.lang.Object xmlSource,
java.util.Map<java.lang.String,java.lang.String> prefix2Uri,
javax.xml.parsers.DocumentBuilderFactory dbf,
javax.xml.xpath.XPathFactory xpf,
java.lang.String xPath) |
MultipleNodeAssert |
MultipleNodeAssert.doNotHaveAttribute(java.lang.String attributeName)
Verifies that all the actual nodes don't have attribute with given name.
|
MultipleNodeAssert |
MultipleNodeAssert.doNotHaveAttribute(java.lang.String attributeName,
java.lang.String attributeValue)
Verifies that all the actual nodes don't have attribute with given name and value.
|
MultipleNodeAssert |
MultipleNodeAssert.exist()
Equivalent for
AbstractIterableAssert.isNotEmpty() . |
MultipleNodeAssert |
XmlAssert.hasXPath(java.lang.String xPath)
Equivalent for
|
MultipleNodeAssert |
MultipleNodeAssert.haveAttribute(java.lang.String attributeName)
Verifies that all the actual nodes have attribute with given name.
|
MultipleNodeAssert |
MultipleNodeAssert.haveAttribute(java.lang.String attributeName,
java.lang.String attributeValue)
Verifies that all the actual nodes have attribute with given name and value.
|
MultipleNodeAssert |
XmlAssert.nodesByXPath(java.lang.String xPath)
Create
MultipleNodeAssert from nodes selecting by given xPath. |