added: #testedClasses expeccoNET_1_6_0_0 expecco_1_9_1_iX expecco_2_0_0 expecco_2_0_0_0
authorClaus Gittinger <cg@exept.de>
Mon, 03 May 2010 17:48:52 +0200
changeset 216 0b7c8dc16ed4
parent 215 6db48dedef3a
child 217 2033d47baf43
added: #testedClasses
TestCase.st
--- a/TestCase.st	Tue Apr 27 10:48:09 2010 +0200
+++ b/TestCase.st	Mon May 03 17:48:52 2010 +0200
@@ -189,6 +189,13 @@
     ^ (self selectors select: [:each | 'test*' match: each]) asOrderedCollection sort
 
     "Modified: / 24-04-2010 / 14:04:51 / cg"
+!
+
+testedClasses
+    "for the browser and for coverage analysis:
+     return a collection of classNames, which are tested by this testCase"
+
+    ^ #()
 ! !
 
 !TestCase class methodsFor:'building suites'!
@@ -791,11 +798,11 @@
 !TestCase class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestCase.st,v 1.55 2010-04-26 08:46:15 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestCase.st,v 1.56 2010-05-03 15:48:52 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestCase.st,v 1.55 2010-04-26 08:46:15 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestCase.st,v 1.56 2010-05-03 15:48:52 cg Exp $'
 ! !
 
 TestCase initialize!