Tools__TestRunnerMini.st
changeset 18997 2d6d26317af8
parent 18942 aa9077775955
--- a/Tools__TestRunnerMini.st	Fri Aug 16 22:26:49 2019 +0200
+++ b/Tools__TestRunnerMini.st	Fri Aug 16 22:55:35 2019 +0200
@@ -1371,9 +1371,12 @@
     "/ (passedCount + failureCount + errorCount) = 1 ifTrue:[^''].
     numRun == 0 ifTrue:[
         numTests == 1 ifTrue:[
-            ^'not run'
+            result skippedOutcomes size == 1 ifTrue:[
+                ^ (result skippedOutcomes first exceptionDetail ? 'skipped') asString
+            ].
+            ^ 'not run'
         ].
-        ^'%1 tests, 0 run' bindWith: numTests
+        ^ '%1 tests, 0 run' bindWith: numTests
     ].
     numRun < numTests ifTrue:[
         skippedCount > 0 ifTrue:[