You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2012/09/26 08:08:49 UTC

svn commit: r1390289 - /incubator/flex/sdk/branches/develop/mustella/java/src/mustella/Runner.java

Author: aharui
Date: Wed Sep 26 06:08:48 2012
New Revision: 1390289

URL: http://svn.apache.org/viewvc?rev=1390289&view=rev
Log:
Add a console output line so we can see how many tests have run so far.

Modified:
    incubator/flex/sdk/branches/develop/mustella/java/src/mustella/Runner.java

Modified: incubator/flex/sdk/branches/develop/mustella/java/src/mustella/Runner.java
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/java/src/mustella/Runner.java?rev=1390289&r1=1390288&r2=1390289&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/java/src/mustella/Runner.java (original)
+++ incubator/flex/sdk/branches/develop/mustella/java/src/mustella/Runner.java Wed Sep 26 06:08:48 2012
@@ -1676,7 +1676,8 @@ public class Runner {
 
 			/// if we got here, it's done
 			running = false;
-
+			System.out.println ("Total Results so far: " + localResultStore.size());
+			
 		}
 
 	}