Tagged Questions
The xmlunit tag has no wiki summary.
5
votes
1answer
303 views
XMLUnit - Xml file indentation impacts on comparison
I am currently trying to use the XMLUnit library to compare two XML files.
One of them, the candidate, is generated by my code from Java Objects (using JAXB) and the other one is the reference (I ...
5
votes
5answers
494 views
Are there any alternatives to XmlUnit?
I need to diff large directory structures containing generated .xml and .wsdl files. The generated .xml files differ in the order that child elements appear. The XmlUnit Diff.similar() method is ...
5
votes
2answers
1k views
Java: How do I ignore certain elements when comparing XML?
I have an XML message like so:
<root>
<elementA>something</elementA>
<elementB>something else</elementB>
<elementC>yet another thing</elementC>
...
3
votes
4answers
119 views
.net Xml comparer for UnitTesting
I have a few unit tests where I need to make sure that XML generated by a method contains the same elements/values as an expected Xml document.
I used xmlunit in Java, and although they have a .net ...
3
votes
1answer
242 views
Does XMLUnit have an assert to ignore whitespace
I want to compare two xml strings in a test, but the test keeps failing due to whitespace.
@Test
public void testForEquality() throws Exception {
String myControlXML = ...
3
votes
3answers
262 views
JUnit Test if XML Document is sorted on arbitrary column
Given an xml document like
<root>
<row>
<a>2</a>
<b>1</b>
<c>8</c>
</row>
<row>
<b>5</b>
...
1
vote
1answer
219 views
XMLUnit - Ignoring 'id' attribute in comparison
I am currently working with XMLUnit and I am wondering if there is way to configure it to ignore only the id attribute of the tags I want to compare.
Thanks in advance for your help.
1
vote
1answer
646 views
XMLUnit - Compare two XML ignoring the child order
I am trying to see if I could use XMLUnit to compare the following two different XML.
I used the Diff class to compare the following two XML and checking for similar returns false.
XML One
...
1
vote
1answer
1k views
How can I compare two similar XML files in XMLUnit
I am trying to use XMLUnit to compare two similar XML files. Basically every thing is same. File1 is a copy of File2. But in File2 I have changed the order of some elements in one node.
Now I am ...
0
votes
0answers
22 views
Using XMLUnit(Java) to compare XML strings containing entities
JDK 1.7.0
XMLUnit 1.3
When comparing this control XML string:
String controlXml = "" +
"<client>" +
" ...
0
votes
0answers
8 views
XMLUNIT : comparing xml strings by ignoring special characters
I am using Xmlunit to compare xml strings:
Diff diff = new Diff(String actualXML, String expectedXML);
The comparison fails for similar xml's if they contain special characters in them (eg: both ...
0
votes
0answers
26 views
How to configure XMLUnit Difference Engine to filter differences only nodes which appears in Control but not in Test?
Got some nodes in Control file ("control" as intended by XMLUnit) which are not in Test file.
(The Control file is like a template file, from which in will complete the Test file, based on found ...
0
votes
0answers
59 views
How to setup xmlunit in intellij?
How can i intall proper xmlunit for intellij idea 10.5.1? I downloaded pack bin which contains folder docs, lib, file KEYS, LICENSE and README. Package was named xmlunit-1.3, and taken from ...
0
votes
0answers
140 views
Comparing similar xml files with XmlUnit with unordered tags (same tag name with different attributes)
I am trying successfully XmlUnit, and is very helpful in my job. Now, I have a little problem, that I don't know how to solve. I have a java class, that has a Set, and when transforming it into XML, ...
0
votes
0answers
194 views
Ignore few children for comparison when comparing xml documents with XMLUnit
Is it possible to ignore few children in elements when comparing xml documents with xmlunit. i want to ignore any empty text nodes in the element when comparing them.
Best Regards,
Keshav
0
votes
1answer
147 views
Testing XML with XMLUnit with a variable value
I have some XML which I am testing, which has set as one of it's elements the date and time. This obviously will change every time the test is run.
Is there a way to compare the XML and have this ...
0
votes
1answer
443 views
How to catch AssertPathsEqual and print error to console?
How could I catch this AssertionFailedError and print to the console an message that says:
"Expected text value '55555' but was '55556' at ...