re base code
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / components / merge / instance / ContainerRelationsMergeInfoTest.java
1 package org.openecomp.sdc.be.components.merge.instance;
2
3 import org.junit.Test;
4
5 import java.util.List;
6
7 public class ContainerRelationsMergeInfoTest {
8
9         private ContainerRelationsMergeInfo createTestSubject() {
10                 return new ContainerRelationsMergeInfo(null, null);
11         }
12
13         @Test
14         public void testGetFromRelationsInfo() throws Exception {
15                 ContainerRelationsMergeInfo testSubject;
16                 List<RelationMergeInfo> result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.getFromRelationsInfo();
21         }
22
23
24         @Test
25         public void testGetToRelationsInfo() throws Exception {
26                 ContainerRelationsMergeInfo testSubject;
27                 List<RelationMergeInfo> result;
28
29                 // default test
30                 testSubject = createTestSubject();
31                 result = testSubject.getToRelationsInfo();
32         }
33
34 }