1 package de.fu_berlin.ties.context;
2
3 import junit.framework.TestCase;
4
5 import de.fu_berlin.ties.classify.feature.DefaultFeatureVector;
6 import de.fu_berlin.ties.combi.CombinationState;
7 import de.fu_berlin.ties.context.ContextDetails;
8
9
10 /***
11 * Generated by JUnitDoclet, a tool provided by
12 * ObjectFab GmbH under LGPL.
13 * Please see www.junitdoclet.org, www.gnu.org
14 * and www.objectfab.de for informations about
15 * the tool, the licence and the authors.
16 */
17
18
19 public class ContextDetailsTest
20
21 extends TestCase
22
23 {
24
25 ContextDetails contextdetails = null;
26
27
28 public ContextDetailsTest(String name) {
29
30 super(name);
31
32 }
33
34 public de.fu_berlin.ties.context.ContextDetails createInstance() throws Exception {
35
36 return new ContextDetails("sample", 3, 247, true, new DefaultFeatureVector(),
37 CombinationState.OUTSIDE, true);
38
39 }
40
41 protected void setUp() throws Exception {
42
43 super.setUp();
44 contextdetails = createInstance();
45
46 }
47
48 protected void tearDown() throws Exception {
49
50 contextdetails = null;
51 super.tearDown();
52
53 }
54
55 public void testGetContext() throws Exception {
56
57
58 }
59
60 public void testGetState() throws Exception {
61
62
63 }
64
65 public void testIsRelevant() throws Exception {
66
67
68 }
69
70
71
72 /***
73 * JUnitDoclet moves marker to this method, if there is not match
74 * for them in the regenerated code and if the marker is not empty.
75 * This way, no test gets lost when regenerating after renaming.
76 * Method testVault is supposed to be empty.
77 */
78 public void testVault() throws Exception {
79
80
81 }
82
83 public static void main(String[] args) {
84
85 junit.textui.TestRunner.run(ContextDetailsTest.class);
86
87 }
88 }