1 package de.fu_berlin.ties.util;
2
3 import junit.framework.TestCase;
4
5 import de.fu_berlin.ties.classify.Prediction;
6 import de.fu_berlin.ties.classify.PredictionComparator;
7 import de.fu_berlin.ties.util.InvertedComparator;
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 InvertedComparatorTest
20
21 extends TestCase
22
23 {
24
25 InvertedComparator invertedcomparator = null;
26
27
28 public InvertedComparatorTest(String name) {
29
30 super(name);
31
32 }
33
34 public de.fu_berlin.ties.util.InvertedComparator createInstance() throws Exception {
35
36 return new InvertedComparator<Prediction>(new PredictionComparator());
37
38 }
39
40 protected void setUp() throws Exception {
41
42 super.setUp();
43 invertedcomparator = createInstance();
44
45 }
46
47 protected void tearDown() throws Exception {
48
49 invertedcomparator = null;
50 super.tearDown();
51
52 }
53
54 public void testCompare() throws Exception {
55
56
57 }
58
59 public void testGetWrappedComparator() throws Exception {
60
61
62 }
63
64 public void testToString() throws Exception {
65
66
67 }
68
69
70
71 /***
72 * JUnitDoclet moves marker to this method, if there is not match
73 * for them in the regenerated code and if the marker is not empty.
74 * This way, no test gets lost when regenerating after renaming.
75 * Method testVault is supposed to be empty.
76 */
77 public void testVault() throws Exception {
78
79
80 }
81
82 public static void main(String[] args) {
83
84 junit.textui.TestRunner.run(InvertedComparatorTest.class);
85
86 }
87 }