#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Sat, 08 Jun 2019 13:55:27 +0200
changeset 752 45d5949563ca
parent 751 8bfef76c9bb3
child 753 5052e1bf244a
#REFACTORING by cg class: TestSkipped changed: #sunitAnnounce:toResult:
TestSkipped.st
--- a/TestSkipped.st	Wed May 29 03:28:44 2019 +0000
+++ b/TestSkipped.st	Sat Jun 08 13:55:27 2019 +0200
@@ -1,5 +1,9 @@
+"{ Encoding: utf8 }"
+
 "{ Package: 'stx:goodies/sunit' }"
 
+"{ NameSpace: Smalltalk }"
+
 TestFailure subclass:#TestSkipped
 	instanceVariableNames:''
 	classVariableNames:''
@@ -11,17 +15,19 @@
 !TestSkipped methodsFor:'handling'!
 
 sunitAnnounce: aTestCase toResult: aTestResult
-        aTestResult addSkipped: aTestCase.
+        aTestResult addSkipped: aTestCase detail:self.
         self sunitExitWith: false.
+
+    "Modified: / 08-06-2019 / 13:54:36 / Claus Gittinger"
 ! !
 
 !TestSkipped class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestSkipped.st,v 1.1 2013-04-03 13:25:08 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestSkipped.st,v 1.1 2013-04-03 13:25:08 cg Exp $'
+    ^ '$Header$'
 ! !