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