Tools__TestRunnerMini.st
changeset 15162 fc14775b60a7
parent 15122 ab2f00b41933
child 15164 0bf39699aad5
--- a/Tools__TestRunnerMini.st	Sun Feb 01 16:41:30 2015 +0100
+++ b/Tools__TestRunnerMini.st	Sun Feb 01 17:23:47 2015 +0100
@@ -297,7 +297,7 @@
                 (LabelSpec
                    name: 'ResultInfo'
                    layout: (LayoutFrame 0 0 -20 1 0 0.5 0 1)
-                   style: (FontDescription helvetica medium roman 8 #'iso10646-1')
+                   style: (FontDescription helvetica medium roman 10 #'iso10646-1')
                    backgroundChannel: resultBackgroundColorAspect
                    foregroundChannel: resultTextForegroundColorAspect
                    translateLabel: true
@@ -331,6 +331,7 @@
         
        )
      )
+
 ! !
 
 !TestRunnerMini class methodsFor:'queries'!
@@ -663,7 +664,8 @@
 
     testedClasses := self allCoveredClasses.
     testedClasses isEmpty ifTrue:[
-        Dialog information:(resources stringWithCRs:'The test cases do not define any covered class.\(missing #coveredClassNames method)\\Running without coverage').
+        (Dialog confirm:(resources stringWithCRs:'The test cases do not define any covered class.\(missing #coveredClassNames or #coveredPackageNames method)\\Run without coverage ?'))
+        ifFalse:[^ self].
     ] ifFalse:[
         self withWaitCursorDo:[
             testedClasses do:[:eachClass |
@@ -1265,14 +1267,14 @@
 !TestRunnerMini class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__TestRunnerMini.st,v 1.7 2015-01-30 13:54:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__TestRunnerMini.st,v 1.8 2015-02-01 16:23:47 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__TestRunnerMini.st,v 1.7 2015-01-30 13:54:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__TestRunnerMini.st,v 1.8 2015-02-01 16:23:47 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: Tools__TestRunnerMini.st,v 1.7 2015-01-30 13:54:52 cg Exp $'
+    ^ '$Id: Tools__TestRunnerMini.st,v 1.8 2015-02-01 16:23:47 cg Exp $'
 ! !