1   package de.fu_berlin.ties.combi;
2   
3   import junit.framework.TestCase;
4   // JUnitDoclet begin import
5   import de.fu_berlin.ties.TiesConfiguration;
6   import de.fu_berlin.ties.extract.ExtractionContainerTest;
7   // JUnitDoclet end import
8   
9   /***
10  * Generated by JUnitDoclet, a tool provided by
11  * ObjectFab GmbH under LGPL.
12  * Please see www.junitdoclet.org, www.gnu.org
13  * and www.objectfab.de for informations about
14  * the tool, the licence and the authors.
15  */
16  
17  
18  public class BeginEndStrategyTest
19  // JUnitDoclet begin extends_implements
20  extends TestCase
21  // JUnitDoclet end extends_implements
22  {
23    // JUnitDoclet begin class
24    BeginEndStrategy beginendstrategy = null;
25    // JUnitDoclet end class
26    
27    public BeginEndStrategyTest(String name) {
28      // JUnitDoclet begin method BeginEndStrategyTest
29      super(name);
30      // JUnitDoclet end method BeginEndStrategyTest
31    }
32    
33    public de.fu_berlin.ties.combi.BeginEndStrategy createInstance() throws Exception {
34      // JUnitDoclet begin method testcase.createInstance
35      return new BeginEndStrategy(ExtractionContainerTest.CLASSES,
36              TiesConfiguration.CONF);
37      // JUnitDoclet end method testcase.createInstance
38    }
39    
40    protected void setUp() throws Exception {
41      // JUnitDoclet begin method testcase.setUp
42      super.setUp();
43      beginendstrategy = createInstance();
44      // JUnitDoclet end method testcase.setUp
45    }
46    
47    protected void tearDown() throws Exception {
48      // JUnitDoclet begin method testcase.tearDown
49      beginendstrategy = null;
50      super.tearDown();
51      // JUnitDoclet end method testcase.tearDown
52    }
53    
54    public void testActiveClasses() throws Exception {
55      // JUnitDoclet begin method activeClasses
56      // JUnitDoclet end method activeClasses
57    }
58    
59    public void testAllClasses() throws Exception {
60      // JUnitDoclet begin method allClasses
61      // JUnitDoclet end method allClasses
62    }
63    
64    public void testContextForReextractor() throws Exception {
65      // JUnitDoclet begin method contextForReextractor
66      // JUnitDoclet end method contextForReextractor
67    }
68    
69    public void testInitReextractor() throws Exception {
70      // JUnitDoclet begin method initReextractor
71      // JUnitDoclet end method initReextractor
72    }
73    
74    public void testTranslateCurrentState() throws Exception {
75      // JUnitDoclet begin method translateCurrentState
76      // JUnitDoclet end method translateCurrentState
77    }
78    
79    public void testTranslateResult() throws Exception {
80      // JUnitDoclet begin method translateResult
81      // JUnitDoclet end method translateResult
82    }
83    
84    public void testUpdateState() throws Exception {
85      // JUnitDoclet begin method updateState
86      // JUnitDoclet end method updateState
87    }
88    
89    
90    
91    /***
92    * JUnitDoclet moves marker to this method, if there is not match
93    * for them in the regenerated code and if the marker is not empty.
94    * This way, no test gets lost when regenerating after renaming.
95    * Method testVault is supposed to be empty.
96    */
97    public void testVault() throws Exception {
98      // JUnitDoclet begin method testcase.testVault
99      // JUnitDoclet end method testcase.testVault
100   }
101   
102   public static void main(String[] args) {
103     // JUnitDoclet begin method testcase.main
104     junit.textui.TestRunner.run(BeginEndStrategyTest.class);
105     // JUnitDoclet end method testcase.main
106   }
107 }