new unit tests for sdc-dao
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / dao / neo4j / GraphPropertiesDictionaryTest.java
1 package org.openecomp.sdc.be.dao.neo4j;
2
3 import org.junit.Test;
4
5 public class GraphPropertiesDictionaryTest {
6
7         private GraphPropertiesDictionary createTestSubject() {
8                 return GraphPropertiesDictionary.ADDITIONAL_INFO_ID_TO_KEY;
9         }
10
11         @Test
12         public void testGetProperty() throws Exception {
13                 GraphPropertiesDictionary testSubject;
14                 String result;
15
16                 // default test
17                 testSubject = createTestSubject();
18                 result = testSubject.getProperty();
19         }
20
21         @Test
22         public void testGetClazz() throws Exception {
23                 GraphPropertiesDictionary testSubject;
24                 Class result;
25
26                 // default test
27                 testSubject = createTestSubject();
28                 result = testSubject.getClazz();
29         }
30
31         @Test
32         public void testIsUnique() throws Exception {
33                 GraphPropertiesDictionary testSubject;
34                 boolean result;
35
36                 // default test
37                 testSubject = createTestSubject();
38                 result = testSubject.isUnique();
39         }
40
41         @Test
42         public void testIsIndexed() throws Exception {
43                 GraphPropertiesDictionary testSubject;
44                 boolean result;
45
46                 // default test
47                 testSubject = createTestSubject();
48                 result = testSubject.isIndexed();
49         }
50 }