summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/scheduler/SchedulerRestInterfaceFactoryTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/scheduler/SchedulerRestInterfaceFactoryTest.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/scheduler/SchedulerRestInterfaceFactoryTest.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/scheduler/SchedulerRestInterfaceFactoryTest.java b/vid-app-common/src/test/java/org/onap/vid/scheduler/SchedulerRestInterfaceFactoryTest.java
new file mode 100644
index 000000000..08cdd5f1a
--- /dev/null
+++ b/vid-app-common/src/test/java/org/onap/vid/scheduler/SchedulerRestInterfaceFactoryTest.java
@@ -0,0 +1,18 @@
+package org.onap.vid.scheduler;
+
+import org.junit.Test;
+
+public class SchedulerRestInterfaceFactoryTest {
+
+ private SchedulerRestInterfaceFactory createTestSubject() {
+ return new SchedulerRestInterfaceFactory();
+ }
+
+ @Test
+ public void testGetInstance() throws Exception {
+ SchedulerRestInterfaceIfc result;
+
+ // default test
+ result = SchedulerRestInterfaceFactory.getInstance();
+ }
+} \ No newline at end of file