class: RBAbstractClass
authorClaus Gittinger <cg@exept.de>
Fri, 25 Mar 2016 16:28:51 +0100
changeset 636 0687cb5a8fd8
parent 635 fd5ef9e8821e
child 637 4aef753a05a1
class: RBAbstractClass category of: #isAbstract
TestCase.st
--- a/TestCase.st	Thu Mar 24 12:52:27 2016 +0100
+++ b/TestCase.st	Fri Mar 25 16:28:51 2016 +0100
@@ -413,6 +413,13 @@
      before running the suite to provide coverage analysis/report"
 
     ^ nil
+!
+
+isAbstract
+        "Override to true if a TestCase subclass is Abstract and should not have
+        TestCase instances built from it"
+
+        ^self == TestCase
 ! !
 
 !TestCase class methodsFor:'quick testing'!
@@ -446,13 +453,6 @@
 
 !TestCase class methodsFor:'testing'!
 
-isAbstract
-        "Override to true if a TestCase subclass is Abstract and should not have
-        TestCase instances built from it"
-
-        ^self == TestCase
-!
-
 isTestCaseLike
 
     ^true