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, 0 insertions, 52 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
deleted file mode 100644
index 40a5ea5ee3..0000000000
--- a/catalog-be/src/test/java/org/openecomp/sdc/be/components/merge/instance/VfRelationsMergeInfoTest.java
+++ /dev/null
@@ -1,52 +0,0 @@
-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