summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/merge/instance/VfRelationsMergeInfoTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-be/src/test/java/org/openecomp/sdc/be/components/merge/instance/VfRelationsMergeInfoTest.java')
-rw-r--r--catalog-be/src/test/java/org/openecomp/sdc/be/components/merge/instance/VfRelationsMergeInfoTest.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/components/merge/instance/VfRelationsMergeInfoTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/components/merge/instance/VfRelationsMergeInfoTest.java
new file mode 100644
index 0000000000..40a5ea5ee3
--- /dev/null
+++ b/catalog-be/src/test/java/org/openecomp/sdc/be/components/merge/instance/VfRelationsMergeInfoTest.java
@@ -0,0 +1,52 @@
+package org.openecomp.sdc.be.components.merge.instance;
+
+import java.util.List;
+
+import org.junit.Test;
+
+public class VfRelationsMergeInfoTest {
+
+ private VfRelationsMergeInfo createTestSubject() {
+ return new VfRelationsMergeInfo(null, null);
+ }
+
+ @Test
+ public void testGetFromRelationsInfo() throws Exception {
+ VfRelationsMergeInfo testSubject;
+ List<RelationMergeInfo> result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getFromRelationsInfo();
+ }
+
+ @Test
+ public void testSetFromRelationsInfo() throws Exception {
+ VfRelationsMergeInfo testSubject;
+ List<RelationMergeInfo> fromRelationsInfo = null;
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setFromRelationsInfo(fromRelationsInfo);
+ }
+
+ @Test
+ public void testGetToRelationsInfo() throws Exception {
+ VfRelationsMergeInfo testSubject;
+ List<RelationMergeInfo> result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getToRelationsInfo();
+ }
+
+ @Test
+ public void testSetToRelationsInfo() throws Exception {
+ VfRelationsMergeInfo testSubject;
+ List<RelationMergeInfo> toRelationsInfo = null;
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setToRelationsInfo(toRelationsInfo);
+ }
+} \ No newline at end of file