src/TestletTestCaseProxy.st
branchjk_new_structure
changeset 865 82615f7deade
parent 859 56bc5e063b7d
child 877 f5a5b93e1c78
equal deleted inserted replaced
864:45d54ed8b273 865:82615f7deade
     5 	classVariableNames:'TestCases'
     5 	classVariableNames:'TestCases'
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'Languages-Java-Tests-Proxies'
     7 	category:'Languages-Java-Tests-Proxies'
     8 !
     8 !
     9 
     9 
    10 
       
    11 !TestletTestCaseProxy class methodsFor:'initialization'!
       
    12 
       
    13 initialize
       
    14 
       
    15     TestCases := Dictionary new.
       
    16 
       
    17     "Created: / 01-03-2011 / 10:43:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    18 ! !
       
    19 
    10 
    20 !TestletTestCaseProxy class methodsFor:'accessing'!
    11 !TestletTestCaseProxy class methodsFor:'accessing'!
    21 
    12 
    22 lookupHierarchyRoot
    13 lookupHierarchyRoot
    23     ^ TestletTestCaseProxy
    14     ^ TestletTestCaseProxy
   145 !TestletTestCaseProxy class methodsFor:'documentation'!
   136 !TestletTestCaseProxy class methodsFor:'documentation'!
   146 
   137 
   147 version_SVN
   138 version_SVN
   148     ^ '$Id$'
   139     ^ '$Id$'
   149 ! !
   140 ! !
   150 
       
   151 TestletTestCaseProxy initialize!