b00b13e162167a583047f85741e59bce70d5ad1f
[sdc.git] /
1 package org.openecomp.sdc.be.model.jsontitan.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 }