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