*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Sun, 07 Aug 2011 14:51:15 +0200
changeset 38 2ce19e2a6095
parent 37 0a356190f3f3
child 39 fc44bd896544
*** empty log message ***
quickSelfTest/SelfTest.st
--- a/quickSelfTest/SelfTest.st	Sun Aug 07 13:12:45 2011 +0200
+++ b/quickSelfTest/SelfTest.st	Sun Aug 07 14:51:15 2011 +0200
@@ -42,7 +42,7 @@
 Stdout showCR:'Loading regression tests...'.
 #(
     'AssociationTests'
-    "/ 'BinaryIOTests'
+    'BinaryIOTests'
     'BinaryTreeTester'
     "/ 'BlockTest'
     'CharacterTests'
@@ -97,8 +97,15 @@
 		Stdout showCR:('- running ',test printString).
 	    ].
 
+Stdout showCR:'Generating report...'.
 TestResultReporter
     report:result
     format:#xml_jUnit
     as:'testresult.xml'.
+
+Stdout showCR:'Summary:'.
+Stdout showCR:('  %1 tests;' bindWith:result runCount).
+Stdout show:('  %1 passed,' bindWith:result passedCount).
+Stdout show:(' %1 failed,' bindWith:result failureCount).
+Stdout showCR:(' %1 errors.' bindWith:result errorCount).
 !