new unit tests for sdc-dao
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / resources / data / RelationshipTypeDataTest.java
index 6baf1a4..00fc45b 100644 (file)
@@ -1,5 +1,6 @@
 package org.openecomp.sdc.be.resources.data;
 
+import java.util.HashMap;
 import java.util.Map;
 
 import org.junit.Test;
@@ -12,6 +13,11 @@ public class RelationshipTypeDataTest {
                return new RelationshipTypeData();
        }
 
+       @Test
+       public void testCtor() throws Exception {
+               new RelationshipTypeData(new HashMap<>());
+               new RelationshipTypeData(new RelationshipInstDataDefinition());
+       }
        
        @Test
        public void testToGraphMap() throws Exception {