Added scaffolding for tests and example functions
[unimgr.git] / impl / src / test / java / org / opendaylight / unimgr / impl / UnimgrMapperTest.java
1 package org.opendaylight.unimgr.impl;
2
3 import org.junit.Before;
4 import org.junit.Test;
5
6 public class UnimgrMapperTest {
7
8     @Before
9     public void setUp() throws Exception {
10     }
11
12     @Test
13     public void testCreateOvsdbBridgeNodeIid() {
14       //TODO
15     }
16
17     @Test
18     public void testGetEvcLinkIid() {
19       //TODO
20     }
21
22     @Test
23     public void testGetEvcTopologyIid() {
24       //TODO
25     }
26
27     @Test
28     public void testGetEvcTopologyNodeIid() {
29       //TODO
30     }
31
32     @Test
33     public void testGetOvsdbBridgeNodeIid() {
34       //TODO
35     }
36
37     /*
38      *  This test for 2 functions with the
39      *  same name that take different parameters.
40      */
41     @Test
42     public void testGetOvsdbNodeIid() {
43       //TODO
44     }
45
46     @Test
47     public void testGetOvsdbTopologyIid() {
48       //TODO
49     }
50
51     /*
52      *  This test for 2 functions with the
53      *  same name that take different parameters.
54      */
55     @Test
56     public void testGetTerminationPointIid() {
57       //TODO
58     }
59
60     /*
61      *  This test for 2 functions with the
62      *  same name that take different parameters.
63      */
64     @Test
65     public void testGetUniIid() {
66       //TODO
67     }
68
69     @Test
70     public void testGetUniTopologyIid() {
71       //TODO
72     }
73
74     @Test
75     public void testGetUniTopologyNodeIid() {
76       //TODO
77     }
78
79     @Test
80     public void testGetUniNodeIid() {
81       //TODO
82     }
83 }