Skip to content

Commit

Permalink
also print output file path on console if result is HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
S1artie committed Feb 27, 2019
1 parent 67a4f05 commit aa87e49
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1687,7 +1687,8 @@ public void onExecutionFinish(TestModel aModel, SuiteSummaryResult aResult) {

try {
if (transformHandling == TransformHandling.EXECUTE_TRANSFORM) {
System.out.print("Transforming Integrity Result XML to HTML...");
System.out.print("Transforming Integrity Result XML to HTML output file '"
+ outputFile.getAbsolutePath() + "'...");
// Transform the XML to XHTML and output that (this actually contains a copy of the original XML
// result tree in an invisible element!)
Thread tempThread = new Thread(Thread.currentThread().getThreadGroup(), new Runnable() {
Expand Down

0 comments on commit aa87e49

Please sign in to comment.