Upgrade sonar plugin
[vid.git] / vid-app-common / src / test / java / org / openecomp / vid / scheduler / SchedulerResponseWrappers / SchedulerResponseWrapperTest.java
1 package org.openecomp.vid.scheduler.SchedulerResponseWrappers;
2
3 import org.junit.Test;
4
5
6 public class SchedulerResponseWrapperTest {
7
8         private SchedulerResponseWrapper createTestSubject() {
9                 return new SchedulerResponseWrapper();
10         }
11
12         
13         @Test
14         public void testGetEntity() throws Exception {
15                 SchedulerResponseWrapper testSubject;
16                 String result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.getEntity();
21         }
22
23         
24         @Test
25         public void testGetStatus() throws Exception {
26                 SchedulerResponseWrapper testSubject;
27                 int result;
28
29                 // default test
30                 testSubject = createTestSubject();
31                 result = testSubject.getStatus();
32         }
33
34         
35         @Test
36         public void testSetStatus() throws Exception {
37                 SchedulerResponseWrapper testSubject;
38                 int v = 0;
39
40                 // default test
41                 testSubject = createTestSubject();
42                 testSubject.setStatus(v);
43         }
44
45         
46         @Test
47         public void testSetEntity() throws Exception {
48                 SchedulerResponseWrapper testSubject;
49                 String v = "";
50
51                 // default test
52                 testSubject = createTestSubject();
53                 testSubject.setEntity(v);
54         }
55
56         
57         @Test
58         public void testToString() throws Exception {
59                 SchedulerResponseWrapper testSubject;
60                 String result;
61
62                 // default test
63                 testSubject = createTestSubject();
64                 result = testSubject.toString();
65         }
66
67         
68         @Test
69         public void testGetResponse() throws Exception {
70                 SchedulerResponseWrapper testSubject;
71                 String result;
72
73                 // default test
74                 testSubject = createTestSubject();
75                 result = testSubject.getResponse();
76         }
77 }