Refactoring Consolidation Service
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / dao / jsongraph / types / EdgePropertyEnumTest.java
1 package org.openecomp.sdc.be.dao.jsongraph.types;
2
3 import org.junit.Test;
4
5
6 public class EdgePropertyEnumTest {
7
8         private EdgePropertyEnum createTestSubject() {
9                 return EdgePropertyEnum.STATE;
10         }
11
12         
13         @Test
14         public void testGetProperty() throws Exception {
15                 EdgePropertyEnum testSubject;
16                 String result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.getProperty();
21         }
22
23         
24         @Test
25         public void testGetByProperty() throws Exception {
26                 String property = "";
27                 EdgePropertyEnum result;
28
29                 // default test
30                 result = EdgePropertyEnum.getByProperty(property);
31         }
32 }