Tools__TestRunnerMini.st
changeset 17059 90e4ae07a4ac
parent 16996 930cd6d05b7b
child 17136 cb908d2ba02e
child 17311 a888ca6cb532
--- a/Tools__TestRunnerMini.st	Wed Nov 09 15:54:46 2016 +0100
+++ b/Tools__TestRunnerMini.st	Sat Nov 12 00:45:28 2016 +0100
@@ -1221,6 +1221,7 @@
         result notNil ifTrue:[
             self hasErrors ifTrue:[^AbstractTestRunner errorColor].
             self hasFailures ifTrue:[^AbstractTestRunner failedColor].
+            self hasSkipped ifTrue:[^AbstractTestRunner notRunColor]. 
             self hasPassed ifTrue:[
                 numTests := suite tests size.
                 numRun := result passedCount + result failureCount + result errorCount.
@@ -1336,6 +1337,11 @@
     ^result passedCount > 0
 
     "Created: / 15-03-2010 / 22:06:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+hasSkipped
+
+    ^result skippedCount > 0
 ! !
 
 !TestRunnerMini class methodsFor:'documentation'!