Add lombok support to simple classes
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / jsonjanusgraph / utils / IdMapperTest.java
1 package org.openecomp.sdc.be.model.jsonjanusgraph.utils;
2
3 import org.junit.Test;
4 import org.openecomp.sdc.be.dao.jsongraph.GraphVertex;
5
6 public class IdMapperTest {
7
8         private IdMapper createTestSubject() {
9                 return new IdMapper();
10         }
11
12         
13         @Test
14         public void testMapComponentNameToUniqueId() throws Exception {
15                 IdMapper testSubject;
16                 String componentInstanceName = "";
17                 GraphVertex serviceVertex = null;
18                 String result;
19
20                 // default test
21                 testSubject = createTestSubject();
22                 result = testSubject.mapComponentNameToUniqueId(componentInstanceName, serviceVertex);
23         }
24
25         
26         @Test
27         public void testMapUniqueIdToComponentNameTo() throws Exception {
28                 IdMapper testSubject;
29                 String compUniqueId = "";
30                 GraphVertex serviceVertex = null;
31                 String result;
32
33                 // default test
34                 testSubject = createTestSubject();
35                 result = testSubject.mapUniqueIdToComponentNameTo(compUniqueId, serviceVertex);
36         }
37 }