1 package de.fu_berlin.ties.classify.feature;
2
3 import junit.framework.TestCase;
4
5
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
18 extends TestCase
19
20 {
21
22 FeatureVector featurevector = null;
23
24
25 public FeatureVectorTest(String name) {
26
27 super(name);
28
29 }
30
31 public de.fu_berlin.ties.classify.feature.FeatureVector createInstance() throws Exception {
32
33 return new DefaultFeatureVector();
34
35 }
36
37 protected void setUp() throws Exception {
38
39 super.setUp();
40 featurevector = createInstance();
41
42 }
43
44 protected void tearDown() throws Exception {
45
46 featurevector = null;
47 super.tearDown();
48
49 }
50
51 public void testAdd() throws Exception {
52
53
54 }
55
56 public void testAddAll() throws Exception {
57
58
59 }
60
61 public void testFlatten() throws Exception {
62
63
64 }
65
66 public void testGet() throws Exception {
67
68
69 }
70
71 public void testIterator() throws Exception {
72
73
74 }
75
76 public void testSize() throws Exception {
77
78
79 }
80
81 public void testToString() throws Exception {
82
83
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
96
97 }
98
99 public static void main(String[] args) {
100
101 junit.textui.TestRunner.run(FeatureVectorTest.class);
102
103 }
104 }