initial checkin
authorClaus Gittinger <cg@exept.de>
Wed, 03 Apr 2013 15:25:08 +0200
changeset 548 0b651f2a1c12
parent 547 e388bff084ad
child 549 965efa0c6e36
initial checkin
TestSkipped.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TestSkipped.st	Wed Apr 03 15:25:08 2013 +0200
@@ -0,0 +1,27 @@
+"{ Package: 'stx:goodies/sunit' }"
+
+TestFailure subclass:#TestSkipped
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SUnit-Preload'
+!
+
+
+!TestSkipped methodsFor:'handling'!
+
+sunitAnnounce: aTestCase toResult: aTestResult
+        aTestResult addSkipped: aTestCase.
+        self sunitExitWith: false.
+! !
+
+!TestSkipped class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestSkipped.st,v 1.1 2013-04-03 13:25:08 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestSkipped.st,v 1.1 2013-04-03 13:25:08 cg Exp $'
+! !
+