1 package de.fu_berlin.ties.combi;
2
3 import junit.framework.TestCase;
4
5 import de.fu_berlin.ties.classify.Probability;
6 import de.fu_berlin.ties.combi.CombinationState;
7
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 CombinationStateTest
19
20 extends TestCase
21
22 {
23
24 CombinationState combinationstate = null;
25
26
27 public CombinationStateTest(String name) {
28
29 super(name);
30
31 }
32
33 public de.fu_berlin.ties.combi.CombinationState createInstance() throws Exception {
34
35 return new CombinationState("speaker", true, false,
36 new Probability(0.95, 0.6));
37
38 }
39
40 protected void setUp() throws Exception {
41
42 super.setUp();
43 combinationstate = createInstance();
44
45 }
46
47 protected void tearDown() throws Exception {
48
49 combinationstate = null;
50 super.tearDown();
51
52 }
53
54 public void testEquals() throws Exception {
55
56
57 }
58
59 public void testGetProbability() throws Exception {
60
61
62 }
63
64 public void testGetType() throws Exception {
65
66
67 }
68
69 public void testHashCode() throws Exception {
70
71
72 }
73
74 public void testIsBegin() throws Exception {
75
76
77 }
78
79 public void testIsDiscardPreceding() throws Exception {
80
81
82 }
83
84 public void testIsEnd() throws Exception {
85
86
87 }
88
89 public void testToString() throws Exception {
90
91
92 }
93
94
95
96 /***
97 * JUnitDoclet moves marker to this method, if there is not match
98 * for them in the regenerated code and if the marker is not empty.
99 * This way, no test gets lost when regenerating after renaming.
100 * Method testVault is supposed to be empty.
101 */
102 public void testVault() throws Exception {
103
104
105 }
106
107 public static void main(String[] args) {
108
109 junit.textui.TestRunner.run(CombinationStateTest.class);
110
111 }
112 }