summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/changeManagement/VnfWorkflowRelationAllResponseTest.java
blob: b8515d34a953195ec973551996a838374bc5d8da (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
package org.onap.vid.changeManagement;

import java.util.List;

import org.junit.Test;

public class VnfWorkflowRelationAllResponseTest {

    private VnfWorkflowRelationAllResponse createTestSubject() {
        return new VnfWorkflowRelationAllResponse();
    }

    @Test
    public void testGetVnfs() throws Exception {
        VnfWorkflowRelationAllResponse testSubject;
        List<VnfDetailsWithWorkflows> result;

        // default test
        testSubject = createTestSubject();
        result = testSubject.getVnfs();
    }

    @Test
    public void testSetVnfs() throws Exception {
        VnfWorkflowRelationAllResponse testSubject;
        List<VnfDetailsWithWorkflows> vnfs = null;

        // default test
        testSubject = createTestSubject();
        testSubject.setVnfs(vnfs);
    }
}