add unit tests to BE components
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / resources / data / auditing / DistributionNotificationEventTest.java
1 package org.openecomp.sdc.be.resources.data.auditing;
2
3 import java.util.Date;
4 import java.util.UUID;
5
6 import javax.annotation.Generated;
7
8 import org.junit.Test;
9
10 public class DistributionNotificationEventTest {
11
12         private DistributionNotificationEvent createTestSubject() {
13                 return new DistributionNotificationEvent();
14         }
15
16         
17         @Test
18         public void testFillFields() throws Exception {
19                 DistributionNotificationEvent testSubject;
20
21                 // default test
22                 testSubject = createTestSubject();
23                 testSubject.fillFields();
24         }
25
26         
27         @Test
28         public void testGetResourceName() throws Exception {
29                 DistributionNotificationEvent testSubject;
30                 String result;
31
32                 // default test
33                 testSubject = createTestSubject();
34                 result = testSubject.getResourceName();
35         }
36
37         
38         @Test
39         public void testSetResourceName() throws Exception {
40                 DistributionNotificationEvent testSubject;
41                 String resourceName = "";
42
43                 // default test
44                 testSubject = createTestSubject();
45                 testSubject.setResourceName(resourceName);
46         }
47
48         
49         @Test
50         public void testGetResourceType() throws Exception {
51                 DistributionNotificationEvent testSubject;
52                 String result;
53
54                 // default test
55                 testSubject = createTestSubject();
56                 result = testSubject.getResourceType();
57         }
58
59         
60         @Test
61         public void testSetResourceType() throws Exception {
62                 DistributionNotificationEvent testSubject;
63                 String resourceType = "";
64
65                 // default test
66                 testSubject = createTestSubject();
67                 testSubject.setResourceType(resourceType);
68         }
69
70         
71         @Test
72         public void testGetCurrVersion() throws Exception {
73                 DistributionNotificationEvent testSubject;
74                 String result;
75
76                 // default test
77                 testSubject = createTestSubject();
78                 result = testSubject.getCurrVersion();
79         }
80
81         
82         @Test
83         public void testSetCurrVersion() throws Exception {
84                 DistributionNotificationEvent testSubject;
85                 String currVersion = "";
86
87                 // default test
88                 testSubject = createTestSubject();
89                 testSubject.setCurrVersion(currVersion);
90         }
91
92         
93         @Test
94         public void testGetCurrState() throws Exception {
95                 DistributionNotificationEvent testSubject;
96                 String result;
97
98                 // default test
99                 testSubject = createTestSubject();
100                 result = testSubject.getCurrState();
101         }
102
103         
104         @Test
105         public void testSetCurrState() throws Exception {
106                 DistributionNotificationEvent testSubject;
107                 String currState = "";
108
109                 // default test
110                 testSubject = createTestSubject();
111                 testSubject.setCurrState(currState);
112         }
113
114         
115         @Test
116         public void testGetTopicName() throws Exception {
117                 DistributionNotificationEvent testSubject;
118                 String result;
119
120                 // default test
121                 testSubject = createTestSubject();
122                 result = testSubject.getTopicName();
123         }
124
125         
126         @Test
127         public void testSetTopicName() throws Exception {
128                 DistributionNotificationEvent testSubject;
129                 String topicName = "";
130
131                 // default test
132                 testSubject = createTestSubject();
133                 testSubject.setTopicName(topicName);
134         }
135
136         
137         @Test
138         public void testGetTimebaseduuid() throws Exception {
139                 DistributionNotificationEvent testSubject;
140                 UUID result;
141
142                 // default test
143                 testSubject = createTestSubject();
144                 result = testSubject.getTimebaseduuid();
145         }
146
147         
148         @Test
149         public void testSetTimebaseduuid() throws Exception {
150                 DistributionNotificationEvent testSubject;
151                 UUID timebaseduuid = null;
152
153                 // default test
154                 testSubject = createTestSubject();
155                 testSubject.setTimebaseduuid(timebaseduuid);
156         }
157
158         
159         @Test
160         public void testGetTimestamp1() throws Exception {
161                 DistributionNotificationEvent testSubject;
162                 Date result;
163
164                 // default test
165                 testSubject = createTestSubject();
166                 result = testSubject.getTimestamp1();
167         }
168
169         
170         @Test
171         public void testSetTimestamp1() throws Exception {
172                 DistributionNotificationEvent testSubject;
173                 Date timestamp1 = null;
174
175                 // default test
176                 testSubject = createTestSubject();
177                 testSubject.setTimestamp1(timestamp1);
178         }
179
180         
181         @Test
182         public void testGetRequestId() throws Exception {
183                 DistributionNotificationEvent testSubject;
184                 String result;
185
186                 // default test
187                 testSubject = createTestSubject();
188                 result = testSubject.getRequestId();
189         }
190
191         
192         @Test
193         public void testSetRequestId() throws Exception {
194                 DistributionNotificationEvent testSubject;
195                 String requestId = "";
196
197                 // default test
198                 testSubject = createTestSubject();
199                 testSubject.setRequestId(requestId);
200         }
201
202         
203         @Test
204         public void testGetServiceInstanceId() throws Exception {
205                 DistributionNotificationEvent testSubject;
206                 String result;
207
208                 // default test
209                 testSubject = createTestSubject();
210                 result = testSubject.getServiceInstanceId();
211         }
212
213         
214         @Test
215         public void testSetServiceInstanceId() throws Exception {
216                 DistributionNotificationEvent testSubject;
217                 String serviceInstanceId = "";
218
219                 // default test
220                 testSubject = createTestSubject();
221                 testSubject.setServiceInstanceId(serviceInstanceId);
222         }
223
224         
225         @Test
226         public void testGetAction() throws Exception {
227                 DistributionNotificationEvent testSubject;
228                 String result;
229
230                 // default test
231                 testSubject = createTestSubject();
232                 result = testSubject.getAction();
233         }
234
235         
236         @Test
237         public void testSetAction() throws Exception {
238                 DistributionNotificationEvent testSubject;
239                 String action = "";
240
241                 // default test
242                 testSubject = createTestSubject();
243                 testSubject.setAction(action);
244         }
245
246         
247         @Test
248         public void testGetStatus() throws Exception {
249                 DistributionNotificationEvent testSubject;
250                 String result;
251
252                 // default test
253                 testSubject = createTestSubject();
254                 result = testSubject.getStatus();
255         }
256
257         
258         @Test
259         public void testSetStatus() throws Exception {
260                 DistributionNotificationEvent testSubject;
261                 String status = "";
262
263                 // default test
264                 testSubject = createTestSubject();
265                 testSubject.setStatus(status);
266         }
267
268         
269         @Test
270         public void testGetDesc() throws Exception {
271                 DistributionNotificationEvent testSubject;
272                 String result;
273
274                 // default test
275                 testSubject = createTestSubject();
276                 result = testSubject.getDesc();
277         }
278
279         
280         @Test
281         public void testSetDesc() throws Exception {
282                 DistributionNotificationEvent testSubject;
283                 String desc = "";
284
285                 // default test
286                 testSubject = createTestSubject();
287                 testSubject.setDesc(desc);
288         }
289
290         
291         @Test
292         public void testGetModifier() throws Exception {
293                 DistributionNotificationEvent testSubject;
294                 String result;
295
296                 // default test
297                 testSubject = createTestSubject();
298                 result = testSubject.getModifier();
299         }
300
301         
302         @Test
303         public void testSetModifier() throws Exception {
304                 DistributionNotificationEvent testSubject;
305                 String modifier = "";
306
307                 // default test
308                 testSubject = createTestSubject();
309                 testSubject.setModifier(modifier);
310         }
311
312         
313         @Test
314         public void testGetDid() throws Exception {
315                 DistributionNotificationEvent testSubject;
316                 String result;
317
318                 // default test
319                 testSubject = createTestSubject();
320                 result = testSubject.getDid();
321         }
322
323         
324         @Test
325         public void testSetDid() throws Exception {
326                 DistributionNotificationEvent testSubject;
327                 String did = "";
328
329                 // default test
330                 testSubject = createTestSubject();
331                 testSubject.setDid(did);
332         }
333
334         
335         @Test
336         public void testToString() throws Exception {
337                 DistributionNotificationEvent testSubject;
338                 String result;
339
340                 // default test
341                 testSubject = createTestSubject();
342                 result = testSubject.toString();
343         }
344 }