aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/model/TestSuite.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/model/TestSuite.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/model/TestSuite.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/model/TestSuite.java b/vid-app-common/src/test/java/org/onap/vid/model/TestSuite.java
new file mode 100644
index 000000000..f634fbc95
--- /dev/null
+++ b/vid-app-common/src/test/java/org/onap/vid/model/TestSuite.java
@@ -0,0 +1,12 @@
+package org.onap.vid.model;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+@RunWith(Suite.class)
+@Suite.SuiteClasses(
+
+{ ModelUtilTest.class, NewServiceTest.class, VolumeGroupTest.class, NewNodeTest.class, ServiceModelTest.class,
+ WorkflowTest.class, NewVNFTest.class })
+public class TestSuite { // nothing
+}