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