Refactoring Consolidation Service
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / components / merge / instance / VfRelationsMergeInfoTest.java
1 package org.openecomp.sdc.be.components.merge.instance;
2
3 import java.util.List;
4
5 import org.junit.Test;
6
7 public class VfRelationsMergeInfoTest {
8
9         private VfRelationsMergeInfo createTestSubject() {
10                 return new VfRelationsMergeInfo(null, null);
11         }
12
13         @Test
14         public void testGetFromRelationsInfo() throws Exception {
15                 VfRelationsMergeInfo testSubject;
16                 List<RelationMergeInfo> result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.getFromRelationsInfo();
21         }
22
23         @Test
24         public void testSetFromRelationsInfo() throws Exception {
25                 VfRelationsMergeInfo testSubject;
26                 List<RelationMergeInfo> fromRelationsInfo = null;
27
28                 // default test
29                 testSubject = createTestSubject();
30                 testSubject.setFromRelationsInfo(fromRelationsInfo);
31         }
32
33         @Test
34         public void testGetToRelationsInfo() throws Exception {
35                 VfRelationsMergeInfo testSubject;
36                 List<RelationMergeInfo> result;
37
38                 // default test
39                 testSubject = createTestSubject();
40                 result = testSubject.getToRelationsInfo();
41         }
42
43         @Test
44         public void testSetToRelationsInfo() throws Exception {
45                 VfRelationsMergeInfo testSubject;
46                 List<RelationMergeInfo> toRelationsInfo = null;
47
48                 // default test
49                 testSubject = createTestSubject();
50                 testSubject.setToRelationsInfo(toRelationsInfo);
51         }
52 }