#UI_ENHANCEMENT by exept
authorClaus Gittinger <cg@exept.de>
Fri, 16 Aug 2019 22:55:35 +0200
changeset 18997 2d6d26317af8
parent 18996 ce203f9d183c
child 18998 121fe2565ab3
#UI_ENHANCEMENT by exept class: Tools::TestRunnerMini::SuiteAndResult changed: #info
Tools__TestRunnerMini.st
--- 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:[