#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Thu, 21 Sep 2017 14:15:44 +0200
changeset 690 cb50d1d3ffeb
parent 689 d8d6e704ac8f
child 691 6bb8fca6b69b
#DOCUMENTATION by cg class: TestCase category of: #isLogging
TestCase.st
--- a/TestCase.st	Wed Aug 30 15:16:04 2017 +0200
+++ b/TestCase.st	Thu Sep 21 14:15:44 2017 +0200
@@ -725,6 +725,13 @@
 
 !TestCase methodsFor:'queries'!
 
+isLogging
+	"By default, we're not logging failures. If you override this in
+	a subclass, make sure that you override #failureLog"
+	^false
+
+!
+
 isTestCase
     ^ true
 !
@@ -822,13 +829,6 @@
 	^SUnitNameResolver class >> #defaultLogDevice
 !
 
-isLogging
-	"By default, we're not logging failures. If you override this in
-	a subclass, make sure that you override #failureLog"
-	^false
-
-!
-
 logFailure: aString
 	self isLogging ifTrue: [
 		self failureLog