Upgrade SDC from Titan to Janus Graph
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / jsonjanusgraph / enums / JsonConstantKeysEnumTest.java
1 package org.openecomp.sdc.be.model.jsonjanusgraph.enums;
2
3 import org.junit.Test;
4
5
6 public class JsonConstantKeysEnumTest {
7
8         private JsonConstantKeysEnum createTestSubject() {
9                 return  JsonConstantKeysEnum.COMPOSITION;
10         }
11
12         
13         @Test
14         public void testGetValue() throws Exception {
15                 JsonConstantKeysEnum testSubject;
16                 String result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.getValue();
21         }
22 }