aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/jsontitan/datamodel/NodeTypeTest.java
blob: 493cb74a25ed410c6abc13421f48d07f6fb9b1eb (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
package org.openecomp.sdc.be.model.jsontitan.datamodel;

import java.util.List;
import java.util.Map;

import org.junit.Test;
import org.openecomp.sdc.be.datatypes.elements.InterfaceDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.ListCapabilityDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.ListRequirementDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.MapPropertiesDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition;


public class NodeTypeTest {

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

	
	@Test
	public void testGetDerivedList() throws Exception {
		NodeType testSubject;
		List<String> result;

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

	
	@Test
	public void testSetDerivedList() throws Exception {
		NodeType testSubject;
		List<String> derivedList = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setDerivedList(derivedList);
	}

	
	@Test
	public void testGetDerivedFrom() throws Exception {
		NodeType testSubject;
		List<String> result;

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

	
	@Test
	public void testSetDerivedFrom() throws Exception {
		NodeType testSubject;
		List<String> derivedFrom = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setDerivedFrom(derivedFrom);
	}

	
	@Test
	public void testGetAttributes() throws Exception {
		NodeType testSubject;
		Map<String, PropertyDataDefinition> result;

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

	
	@Test
	public void testSetAttributes() throws Exception {
		NodeType testSubject;
		Map<String, PropertyDataDefinition> attributes = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setAttributes(attributes);
	}

	
	@Test
	public void testGetCapabilties() throws Exception {
		NodeType testSubject;
		Map<String, ListCapabilityDataDefinition> result;

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

	
	@Test
	public void testSetCapabilties() throws Exception {
		NodeType testSubject;
		Map<String, ListCapabilityDataDefinition> capabilties = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setCapabilities(capabilties);
	}

	
	@Test
	public void testGetRequirements() throws Exception {
		NodeType testSubject;
		Map<String, ListRequirementDataDefinition> result;

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

	
	@Test
	public void testSetRequirements() throws Exception {
		NodeType testSubject;
		Map<String, ListRequirementDataDefinition> requirements = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setRequirements(requirements);
	}

	
	@Test
	public void testGetCapabiltiesProperties() throws Exception {
		NodeType testSubject;
		Map<String, MapPropertiesDataDefinition> result;

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

	
	@Test
	public void testSetCapabiltiesProperties() throws Exception {
		NodeType testSubject;
		Map<String, MapPropertiesDataDefinition> capabiltiesProperties = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setCapabilitiesProperties(capabiltiesProperties);
	}

	
	@Test
	public void testGetInterfaceArtifacts() throws Exception {
		NodeType testSubject;
		Map<String, InterfaceDataDefinition> result;

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

	
	@Test
	public void testSetInterfaceArtifacts() throws Exception {
		NodeType testSubject;
		Map<String, InterfaceDataDefinition> interfaceArtifacts = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setInterfaceArtifacts(interfaceArtifacts);
	}
}