aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/merge/instance/ContainerRelationsMergeInfoTest.java
blob: ba207c83de11ef4af843f4cb4b213c504e671372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package org.openecomp.sdc.be.components.merge.instance;

import org.junit.Test;

import java.util.List;

public class ContainerRelationsMergeInfoTest {

	private ContainerRelationsMergeInfo createTestSubject() {
		return new ContainerRelationsMergeInfo(null, null);
	}

	@Test
	public void testGetFromRelationsInfo() throws Exception {
		ContainerRelationsMergeInfo testSubject;
		List<RelationMergeInfo> result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getFromRelationsInfo();
	}


	@Test
	public void testGetToRelationsInfo() throws Exception {
		ContainerRelationsMergeInfo testSubject;
		List<RelationMergeInfo> result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getToRelationsInfo();
	}

}