aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/mso/MsoResponseWrapperTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/mso/MsoResponseWrapperTest.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/mso/MsoResponseWrapperTest.java70
1 files changed, 70 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/mso/MsoResponseWrapperTest.java b/vid-app-common/src/test/java/org/onap/vid/mso/MsoResponseWrapperTest.java
new file mode 100644
index 000000000..b5b0d9fcf
--- /dev/null
+++ b/vid-app-common/src/test/java/org/onap/vid/mso/MsoResponseWrapperTest.java
@@ -0,0 +1,70 @@
+package org.onap.vid.mso;
+
+import org.junit.Test;
+
+public class MsoResponseWrapperTest {
+
+ private MsoResponseWrapper createTestSubject() {
+ return new MsoResponseWrapper();
+ }
+
+ @Test
+ public void testGetEntity() throws Exception {
+ MsoResponseWrapper testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getEntity();
+ }
+
+ @Test
+ public void testGetStatus() throws Exception {
+ MsoResponseWrapper testSubject;
+ int result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getStatus();
+ }
+
+ @Test
+ public void testSetStatus() throws Exception {
+ MsoResponseWrapper testSubject;
+ int v = 0;
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setStatus(v);
+ }
+
+ @Test
+ public void testSetEntity() throws Exception {
+ MsoResponseWrapper testSubject;
+ String v = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setEntity(v);
+ }
+
+ @Test
+ public void testToString() throws Exception {
+ MsoResponseWrapper testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.toString();
+ }
+
+ @Test
+ public void testGetResponse() throws Exception {
+ MsoResponseWrapper testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getResponse();
+ }
+} \ No newline at end of file