blob: 27981bbd551e4afeb53e199b0313f9e21b0971b1 (
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
|
package org.onap.vid.mso;
import org.junit.Test;
public class MsoResponseWrapper2Test {
private MsoResponseWrapper2 createTestSubject() {
return new MsoResponseWrapper2(new RestObject());
}
@Test
public void testGetStatus() throws Exception {
MsoResponseWrapper2 testSubject;
int result;
// default test
testSubject = createTestSubject();
result = testSubject.getStatus();
}
@Test
public void testGetResponse() throws Exception {
MsoResponseWrapper2 testSubject;
String result;
// default test
testSubject = createTestSubject();
result = testSubject.getResponse();
}
@Test
public void testGetEntity() throws Exception {
MsoResponseWrapper2 testSubject;
Object result;
// default test
testSubject = createTestSubject();
result = testSubject.getEntity();
}
}
|