aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/services/WorkflowServiceImplTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/services/WorkflowServiceImplTest.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/services/WorkflowServiceImplTest.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/services/WorkflowServiceImplTest.java b/vid-app-common/src/test/java/org/onap/vid/services/WorkflowServiceImplTest.java
new file mode 100644
index 000000000..36f8c0b27
--- /dev/null
+++ b/vid-app-common/src/test/java/org/onap/vid/services/WorkflowServiceImplTest.java
@@ -0,0 +1,33 @@
+package org.onap.vid.services;
+
+import java.util.*;
+
+import org.junit.Test;
+
+public class WorkflowServiceImplTest {
+
+ private WorkflowServiceImpl createTestSubject() {
+ return new WorkflowServiceImpl();
+ }
+
+ @Test
+ public void testGetWorkflowsForVNFs() throws Exception {
+ WorkflowServiceImpl testSubject;
+ Collection<String> vnfNames = new ArrayList<String>();
+ Collection<String> result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getWorkflowsForVNFs(vnfNames);
+ }
+
+ @Test
+ public void testGetAllWorkflows() throws Exception {
+ WorkflowServiceImpl testSubject;
+ Collection<String> result;
+
+ // default test
+ testSubject = createTestSubject();
+ result = testSubject.getAllWorkflows();
+ }
+} \ No newline at end of file