1
2 package eu.simuline.relana.model;
3
4 import eu.simuline.testhelpers.Actions;
5 // import eu.simuline.testhelpers.Accessor;
6 // import eu.simuline.testhelpers.Assert;
7
8 // import static org.junit.Assert.assertEquals;
9 // import static org.junit.Assert.assertTrue;
10 // import static org.junit.Assert.assertNull;
11 // import static org.junit.Assert.fail;
12
13 import org.junit.Test;
14 import org.junit.BeforeClass;
15 import org.junit.Before;
16 import org.junit.After;
17 import org.junit.runner.RunWith;
18 import org.junit.runners.Suite;
19 import org.junit.runners.Suite.SuiteClasses;
20
21
22 /**
23 * DeficiencyMapTest.java
24 *
25 *
26 * Created: Mon May 23 21:23:07 2005
27 *
28 * @author <a href="mailto:ernst@local">Ernst Reissner</a>
29 * @version 1.0
30 */
31 @RunWith(Suite.class)
32 @SuiteClasses({DeficiencyMapTest.TestAll.class})
33 public class DeficiencyMapTest {
34
35 private final static String ROOT =
36 "file://" +
37 System.getProperty("tstModelDir") +
38 "eu/simuline/relana/";
39
40 /* -------------------------------------------------------------------- *
41 * framework. *
42 * -------------------------------------------------------------------- */
43
44 static DeficiencyMapTest TEST = new DeficiencyMapTest();
45
46 public static class TestAll {
47 @Test public void testConstructor() {
48 DeficiencyMapTest.TEST.testConstructor();
49 } // testConstructor
50
51 @Test public void testCompose() {
52 DeficiencyMapTest.TEST.testCompose();
53 } // testCompose
54 } // class TestAll
55
56
57 /* -------------------------------------------------------------------- *
58 * methods for tests. *
59 * -------------------------------------------------------------------- */
60
61
62
63 public void testConstructor() {
64
65 } // testConstructor
66
67 public void testCompose() {
68 } // testCompose
69
70 /* -------------------------------------------------------------------- *
71 * framework. *
72 * -------------------------------------------------------------------- */
73
74 /**
75 * Runs the test case.
76 *
77 * Uncomment either the textual UI, Swing UI, or AWT UI.
78 */
79 public static void main(String args[]) {
80 Actions.runFromMain();
81 }
82
83 } // DeficiencyMapTest
84