checkin from browser
authorClaus Gittinger <cg@exept.de>
Mon, 18 Nov 2002 18:13:47 +0100
changeset 90 35bbf3487eb1
parent 89 9f4e3bddee97
child 91 df3c9d5e7295
checkin from browser
TestCase.st
--- a/TestCase.st	Mon Nov 18 18:13:33 2002 +0100
+++ b/TestCase.st	Mon Nov 18 18:13:47 2002 +0100
@@ -174,9 +174,10 @@
 !TestCase class methodsFor:'testing'!
 
 isAbstract
-	"Override to true if a TestCase subclass is Abstract and should not have
-	TestCase instances built from it"
-	^self name = #TestCase.
+        "Override to true if a TestCase subclass is Abstract and should not have
+        TestCase instances built from it"
+
+        ^self name = #TestCase.
 !
 
 runTests
@@ -418,7 +419,7 @@
 !TestCase class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestCase.st,v 1.29 2002-11-11 09:50:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestCase.st,v 1.30 2002-11-18 17:13:47 cg Exp $'
 ! !
 
 TestCase initialize!