From: <bo...@us...> - 2013-08-18 11:10:53
|
Revision: 540 http://sourceforge.net/p/xmlunit/code/540 Author: bodewig Date: 2013-08-18 11:10:49 +0000 (Sun, 18 Aug 2013) Log Message: ----------- try to get additional information on test error in Gump Modified Paths: -------------- trunk/xmlunit/src/tests/java-legacy/org/custommonkey/xmlunit/test_Transform.java Modified: trunk/xmlunit/src/tests/java-legacy/org/custommonkey/xmlunit/test_Transform.java =================================================================== --- trunk/xmlunit/src/tests/java-legacy/org/custommonkey/xmlunit/test_Transform.java 2013-08-13 11:50:32 UTC (rev 539) +++ trunk/xmlunit/src/tests/java-legacy/org/custommonkey/xmlunit/test_Transform.java 2013-08-18 11:10:49 UTC (rev 540) @@ -159,8 +159,9 @@ } }); Transform transform = new Transform(s, xsl); - transform.getResultString(); - fail("should fail because of unknown include URI"); + String transformResult = transform.getResultString(); + fail("should fail because of unknown include URI but transform" + + " yielded '" + transformResult + "' instead"); } catch (ConfigurationException tce) { // expected exception } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |