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