TestCase.st
changeset 326 4732cd296e5f
parent 305 f532271f8daa
child 328 66cae160c956
equal deleted inserted replaced
325:76240d956e7d 326:4732cd296e5f
    13 "
    13 "
    14  No other class instance variables are inherited by this class.
    14  No other class instance variables are inherited by this class.
    15 "
    15 "
    16 !
    16 !
    17 
    17 
    18 TestCase comment:''
       
    19 !
       
    20 
       
    21 
    18 
    22 !TestCase class methodsFor:'initialization'!
    19 !TestCase class methodsFor:'initialization'!
    23 
    20 
    24 initialize
    21 initialize
    25     ResumableTestFailure autoload
    22     ResumableTestFailure autoload
    26 
    23 
    27     "
    24     "
    28      self initialize
    25      self initialize
    29     "
    26     "
       
    27 !
       
    28 
       
    29 postAutoload
       
    30     self projectDefinitionClass loadExtensions
    30 ! !
    31 ! !
    31 
    32 
    32 !TestCase class methodsFor:'instance creation'!
    33 !TestCase class methodsFor:'instance creation'!
    33 
    34 
    34 asTestCase
    35 asTestCase
   365 ! !
   366 ! !
   366 
   367 
   367 !TestCase class methodsFor:'testing'!
   368 !TestCase class methodsFor:'testing'!
   368 
   369 
   369 isAbstract
   370 isAbstract
   370 	"Override to true if a TestCase subclass is Abstract and should not have
   371         "Override to true if a TestCase subclass is Abstract and should not have
   371 	TestCase instances built from it"
   372         TestCase instances built from it"
   372 
   373 
   373 	^self sunitName = #TestCase
   374         ^self sunitName = #TestCase
   374 !
   375 !
   375 
   376 
   376 isTestCaseLike
   377 isTestCaseLike
   377 
   378 
   378     ^true
   379     ^true
   830 ! !
   831 ! !
   831 
   832 
   832 !TestCase class methodsFor:'documentation'!
   833 !TestCase class methodsFor:'documentation'!
   833 
   834 
   834 version
   835 version
   835     ^ '$Header: /cvs/stx/stx/goodies/sunit/TestCase.st,v 1.71 2011-08-04 12:09:32 vrany Exp $'
   836     ^ '$Header: /cvs/stx/stx/goodies/sunit/TestCase.st,v 1.72 2011-08-09 08:50:04 stefan Exp $'
   836 !
   837 !
   837 
   838 
   838 version_CVS
   839 version_CVS
   839     ^ '$Header: /cvs/stx/stx/goodies/sunit/TestCase.st,v 1.71 2011-08-04 12:09:32 vrany Exp $'
   840     ^ '$Header: /cvs/stx/stx/goodies/sunit/TestCase.st,v 1.72 2011-08-09 08:50:04 stefan Exp $'
   840 !
   841 !
   841 
   842 
   842 version_SVN
   843 version_SVN
   843     ^ '§Id: TestCase.st 218 2011-06-13 15:45:06Z vranyj1 §'
   844     ^ '§Id: TestCase.st 218 2011-06-13 15:45:06Z vranyj1 §'
   844 ! !
   845 ! !