You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by le...@apache.org on 2009/05/07 11:04:09 UTC

svn commit: r772560 - /ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/TestRunContainer.java

Author: lektran
Date: Thu May  7 09:04:08 2009
New Revision: 772560

URL: http://svn.apache.org/viewvc?rev=772560&view=rev
Log:
Add the test suite name to the log output, otherwise it isn't very clear which test suite's results are being displayed

Modified:
    ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/TestRunContainer.java

Modified: ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/TestRunContainer.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/TestRunContainer.java?rev=772560&r1=772559&r2=772560&view=diff
==============================================================================
--- ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/TestRunContainer.java (original)
+++ ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/TestRunContainer.java Thu May  7 09:04:08 2009
@@ -141,6 +141,7 @@
             xml.endTestSuite(test);
 
             // display the results
+            Debug.log("[JUNIT] Results for test suite: " + suite.getName());
             Debug.log("[JUNIT] Pass: " + results.wasSuccessful() + " | # Tests: " + results.runCount() + " | # Failed: " +
                     results.failureCount() + " # Errors: " + results.errorCount(), module);
             if (Debug.importantOn()) {