aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/aai/model/RelationshipDataTest.java
blob: ae5f7c39a4053e207bf6ab119519c3e35409f6e5 (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
51
52
53
54
55
package org.onap.vid.aai.model;

import org.junit.Test;


public class RelationshipDataTest {

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


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

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


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

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


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

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


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

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