aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/aai/model/RelatedToPropertyTest.java
blob: 0d26f56078fc852e1dfc2ea93f19d6ba2188c971 (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 RelatedToPropertyTest {

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


	@Test
	public void testGetPropertyKey() throws Exception {
		RelatedToProperty testSubject;
		String result;

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


	@Test
	public void testSetPropertyKey() throws Exception {
		RelatedToProperty testSubject;
		String propertyKey = "";

		// default test
		testSubject = createTestSubject();
		testSubject.setPropertyKey(propertyKey);
	}


	@Test
	public void testGetPropertyValue() throws Exception {
		RelatedToProperty testSubject;
		String result;

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


	@Test
	public void testSetPropertyValue() throws Exception {
		RelatedToProperty testSubject;
		String propertyValue = "";

		// default test
		testSubject = createTestSubject();
		testSubject.setPropertyValue(propertyValue);
	}
}