From 1cfb08779ea0e00be69e072a940b3063e049fe6b Mon Sep 17 00:00:00 2001 From: Ofir Sonsino Date: Wed, 31 Jan 2018 17:19:00 +0200 Subject: org.onap migration Change-Id: I52f0b2851f2c765752b6d21f49b32136d7d72a3d Issue-ID: VID-86 Signed-off-by: Ofir Sonsino --- .../SchedulerResponseWrapperTest.java | 77 ---------------------- 1 file changed, 77 deletions(-) delete mode 100644 vid-app-common/src/test/java/org/openecomp/vid/scheduler/SchedulerResponseWrappers/SchedulerResponseWrapperTest.java (limited to 'vid-app-common/src/test/java/org/openecomp/vid/scheduler/SchedulerResponseWrappers/SchedulerResponseWrapperTest.java') 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 c0fcb591..00000000 --- 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 -- cgit 1.2.3-korg