re base code
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / dao / neo4j / GraphEdgePropertiesDictionaryTest.java
1 package org.openecomp.sdc.be.dao.neo4j;
2
3 import org.junit.Test;
4
5 import java.util.List;
6
7 public class GraphEdgePropertiesDictionaryTest {
8
9         private GraphEdgePropertiesDictionary createTestSubject() {
10                 return GraphEdgePropertiesDictionary.GET_INPUT_INDEX;
11         }
12
13         @Test
14         public void testGetProperty() throws Exception {
15                 GraphEdgePropertiesDictionary testSubject;
16                 String result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.getProperty();
21         }
22
23         @Test
24         public void testSetProperty() throws Exception {
25                 GraphEdgePropertiesDictionary testSubject;
26                 String property = "";
27
28                 // default test
29                 testSubject = createTestSubject();
30                 testSubject.setProperty(property);
31         }
32
33         @Test
34         public void testGetClazz() throws Exception {
35                 GraphEdgePropertiesDictionary testSubject;
36                 Class result;
37
38                 // default test
39                 testSubject = createTestSubject();
40                 result = testSubject.getClazz();
41         }
42
43         @Test
44         public void testSetClazz() throws Exception {
45                 GraphEdgePropertiesDictionary testSubject;
46                 Class clazz = null;
47
48                 // default test
49                 testSubject = createTestSubject();
50                 testSubject.setClazz(clazz);
51         }
52
53         @Test
54         public void testGetAllProperties() throws Exception {
55                 List<String> result;
56
57                 // default test
58                 result = GraphEdgePropertiesDictionary.getAllProperties();
59         }
60
61         @Test
62         public void testGetByName() throws Exception {
63                 String property = "";
64                 GraphEdgePropertiesDictionary result;
65
66                 // default test
67                 result = GraphEdgePropertiesDictionary.getByName(property);
68                 result = GraphEdgePropertiesDictionary.getByName("mock");
69         }
70 }