aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/services/WorkflowServiceImplTest.java
blob: 36f8c0b2751e1315580ac07a067086692ebe2032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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();
    }
}