re base code
[sdc.git] / common-be / src / test / java / org / openecomp / sdc / be / datatypes / elements / CapabilityTypeDataDefinitionTest.java
1 package org.openecomp.sdc.be.datatypes.elements;
2
3 import org.junit.Test;
4
5 import java.util.List;
6
7 public class CapabilityTypeDataDefinitionTest {
8
9         private CapabilityTypeDataDefinition createTestSubject() {
10                 return new CapabilityTypeDataDefinition();
11         }
12         
13         @Test
14         public void testCopyConstructor() throws Exception {
15                 CapabilityTypeDataDefinition testSubject;
16                 String result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 new CapabilityTypeDataDefinition(testSubject);
21         }
22         
23         @Test
24         public void testGetUniqueId() throws Exception {
25                 CapabilityTypeDataDefinition testSubject;
26                 String result;
27
28                 // default test
29                 testSubject = createTestSubject();
30                 result = testSubject.getUniqueId();
31         }
32
33         @Test
34         public void testSetUniqueId() throws Exception {
35                 CapabilityTypeDataDefinition testSubject;
36                 String uniqueId = "";
37
38                 // default test
39                 testSubject = createTestSubject();
40                 testSubject.setUniqueId(uniqueId);
41         }
42
43         @Test
44         public void testGetDescription() throws Exception {
45                 CapabilityTypeDataDefinition testSubject;
46                 String result;
47
48                 // default test
49                 testSubject = createTestSubject();
50                 result = testSubject.getDescription();
51         }
52
53         @Test
54         public void testSetDescription() throws Exception {
55                 CapabilityTypeDataDefinition testSubject;
56                 String description = "";
57
58                 // default test
59                 testSubject = createTestSubject();
60                 testSubject.setDescription(description);
61         }
62
63         @Test
64         public void testGetType() throws Exception {
65                 CapabilityTypeDataDefinition testSubject;
66                 String result;
67
68                 // default test
69                 testSubject = createTestSubject();
70                 result = testSubject.getType();
71         }
72
73         @Test
74         public void testSetType() throws Exception {
75                 CapabilityTypeDataDefinition testSubject;
76                 String type = "";
77
78                 // default test
79                 testSubject = createTestSubject();
80                 testSubject.setType(type);
81         }
82
83         @Test
84         public void testGetValidSourceTypes() throws Exception {
85                 CapabilityTypeDataDefinition testSubject;
86                 List<String> result;
87
88                 // default test
89                 testSubject = createTestSubject();
90                 result = testSubject.getValidSourceTypes();
91         }
92
93         @Test
94         public void testSetValidSourceTypes() throws Exception {
95                 CapabilityTypeDataDefinition testSubject;
96                 List<String> validSourceTypes = null;
97
98                 // default test
99                 testSubject = createTestSubject();
100                 testSubject.setValidSourceTypes(validSourceTypes);
101         }
102
103         @Test
104         public void testGetVersion() throws Exception {
105                 CapabilityTypeDataDefinition testSubject;
106                 String result;
107
108                 // default test
109                 testSubject = createTestSubject();
110                 result = testSubject.getVersion();
111         }
112
113         @Test
114         public void testSetVersion() throws Exception {
115                 CapabilityTypeDataDefinition testSubject;
116                 String version = "";
117
118                 // default test
119                 testSubject = createTestSubject();
120                 testSubject.setVersion(version);
121         }
122
123         @Test
124         public void testGetCreationTime() throws Exception {
125                 CapabilityTypeDataDefinition testSubject;
126                 Long result;
127
128                 // default test
129                 testSubject = createTestSubject();
130                 result = testSubject.getCreationTime();
131         }
132
133         @Test
134         public void testSetCreationTime() throws Exception {
135                 CapabilityTypeDataDefinition testSubject;
136                 Long creationTime = null;
137
138                 // default test
139                 testSubject = createTestSubject();
140                 testSubject.setCreationTime(creationTime);
141         }
142
143         @Test
144         public void testGetModificationTime() throws Exception {
145                 CapabilityTypeDataDefinition testSubject;
146                 Long result;
147
148                 // default test
149                 testSubject = createTestSubject();
150                 result = testSubject.getModificationTime();
151         }
152
153         @Test
154         public void testSetModificationTime() throws Exception {
155                 CapabilityTypeDataDefinition testSubject;
156                 Long modificationTime = null;
157
158                 // default test
159                 testSubject = createTestSubject();
160                 testSubject.setModificationTime(modificationTime);
161         }
162
163         @Test
164         public void testToString() throws Exception {
165                 CapabilityTypeDataDefinition testSubject;
166                 String result;
167
168                 // default test
169                 testSubject = createTestSubject();
170                 result = testSubject.toString();
171         }
172 }