aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/scheduler/rest
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/scheduler/rest')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/scheduler/rest/RequestDetailsTest.java34
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/scheduler/rest/TestSuite.java11
2 files changed, 45 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/scheduler/rest/RequestDetailsTest.java b/vid-app-common/src/test/java/org/onap/vid/scheduler/rest/RequestDetailsTest.java
new file mode 100644
index 00000000..aa634f93
--- /dev/null
+++ b/vid-app-common/src/test/java/org/onap/vid/scheduler/rest/RequestDetailsTest.java
@@ -0,0 +1,34 @@
+package org.onap.vid.scheduler.rest;
+
+import org.junit.Test;
+import org.onap.vid.mso.rest.RequestDetails;
+
+
+public class RequestDetailsTest {
+
+ private RequestDetails createTestSubject() {
+ return new RequestDetails();
+ }
+
+
+ /*@Test
+ public void testGetDomain() throws Exception {
+ RequestDetails testSubject;
+ String result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getDomain();
+ }
+
+
+ @Test
+ public void testSetDomain() throws Exception {
+ RequestDetails testSubject;
+ String domain = "";
+
+ // default test
+ testSubject = createTestSubject();
+ testSubject.setDomain(domain);
+ }*/
+} \ No newline at end of file
diff --git a/vid-app-common/src/test/java/org/onap/vid/scheduler/rest/TestSuite.java b/vid-app-common/src/test/java/org/onap/vid/scheduler/rest/TestSuite.java
new file mode 100644
index 00000000..2bdeeb30
--- /dev/null
+++ b/vid-app-common/src/test/java/org/onap/vid/scheduler/rest/TestSuite.java
@@ -0,0 +1,11 @@
+package org.onap.vid.scheduler.rest;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+@RunWith(Suite.class)
+@Suite.SuiteClasses(
+
+{ RequestDetailsTest.class })
+public class TestSuite { // nothing
+}