summaryrefslogtreecommitdiffstats
path: root/common-be/src/test/java/org/openecomp/sdc/be/datatypes/enums/JsonPresentationFieldsTest.java
blob: 9b26af85674cc64a5fa261e72d3ae930121bbd05 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package org.openecomp.sdc.be.datatypes.enums;

import org.junit.Test;

public class JsonPresentationFieldsTest {

	private JsonPresentationFields createTestSubject() {
		return JsonPresentationFields.API_URL;
	}

	@Test
	public void testGetPresentation() throws Exception {
		JsonPresentationFields testSubject;
		String result;

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

	@Test
	public void testSetPresentation() throws Exception {
		JsonPresentationFields testSubject;
		String presentation = "";

		// default test
		testSubject = createTestSubject();
		testSubject.setPresentation(presentation);
	}

	@Test
	public void testGetStoredAs() throws Exception {
		JsonPresentationFields testSubject;
		GraphPropertyEnum result;

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

	@Test
	public void testSetStoredAs() throws Exception {
		JsonPresentationFields testSubject;
		GraphPropertyEnum storedAs = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setStoredAs(storedAs);
	}

	@Test
	public void testGetPresentationByGraphProperty() throws Exception {
		GraphPropertyEnum property = null;
		String result;

		// default test
		result = JsonPresentationFields.getPresentationByGraphProperty(null);
		result = JsonPresentationFields.getPresentationByGraphProperty(GraphPropertyEnum.INVARIANT_UUID);
	}

	@Test
	public void testToString() throws Exception {
		JsonPresentationFields testSubject;
		String result;

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

	@Test
	public void testGetByPresentation() throws Exception {
		String presentation = "";
		JsonPresentationFields result;

		// default test
		result = JsonPresentationFields.getByPresentation(presentation);
	}
}