aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/openecomp/vid/scheduler/rest/TestSuite.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/openecomp/vid/scheduler/rest/TestSuite.java')
-rw-r--r--vid-app-common/src/test/java/org/openecomp/vid/scheduler/rest/TestSuite.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/openecomp/vid/scheduler/rest/TestSuite.java b/vid-app-common/src/test/java/org/openecomp/vid/scheduler/rest/TestSuite.java
new file mode 100644
index 000000000..714d0b085
--- /dev/null
+++ b/vid-app-common/src/test/java/org/openecomp/vid/scheduler/rest/TestSuite.java
@@ -0,0 +1,11 @@
+package org.openecomp.vid.scheduler.rest;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+@RunWith(Suite.class)
+@Suite.SuiteClasses(
+
+{ RequestDetailsTest.class })
+public class TestSuite { // nothing
+}