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