aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/info/RelationshipDataTest.java
blob: 3a3ac2c5776729084009c80d68c9bafdc65b721e (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package org.openecomp.sdc.be.info;

import org.junit.Test;

public class RelationshipDataTest {

	private RelationshipData createTestSubject() {
		return new RelationshipData();
	}

	@Test
	public void testSetRelationshipkey() throws Exception {
		RelationshipData testSubject;
		String relationshipKey = "";

		// default test
		testSubject = createTestSubject();
		testSubject.setRelationshipkey(relationshipKey);
	}

	@Test
	public void testGetRelationshipKey() throws Exception {
		RelationshipData testSubject;
		String result;

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

	@Test
	public void testSetRelationshipValue() throws Exception {
		RelationshipData testSubject;
		String relationshipValue = "";

		// default test
		testSubject = createTestSubject();
		testSubject.setRelationshipValue(relationshipValue);
	}

	@Test
	public void testGetRelationshipValue() throws Exception {
		RelationshipData testSubject;
		String result;

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