From: <bo...@us...> - 2008-03-26 20:49:38
|
Revision: 255 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=255&view=rev Author: bodewig Date: 2008-03-26 13:49:12 -0700 (Wed, 26 Mar 2008) Log Message: ----------- Test DetailedDiff in subclass Modified Paths: -------------- trunk/xmlunit/tests/java/org/custommonkey/xmlunit/test_Diff.java Modified: trunk/xmlunit/tests/java/org/custommonkey/xmlunit/test_Diff.java =================================================================== --- trunk/xmlunit/tests/java/org/custommonkey/xmlunit/test_Diff.java 2008-03-26 05:02:03 UTC (rev 254) +++ trunk/xmlunit/tests/java/org/custommonkey/xmlunit/test_Diff.java 2008-03-26 20:49:12 UTC (rev 255) @@ -721,7 +721,7 @@ + "</env:Envelope>"; XMLUnit.setIgnoreWhitespace(true); try { - Diff diff = XMLUnit.compareXML(control, test); + Diff diff = buildDiff(control, test); assertTrue(diff.toString(), diff.identical()); } finally { XMLUnit.setIgnoreWhitespace(false); @@ -737,10 +737,11 @@ String test = "<a>\r\n <b/>\r\n</a>"; XMLUnit.setIgnoreWhitespace(true); try { - Diff diff = XMLUnit.compareXML(control, test); + Diff diff = buildDiff(control, test); assertTrue(diff.toString(), diff.identical()); } finally { XMLUnit.setIgnoreWhitespace(false); } } + } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |