aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/aai/model/GetServiceModelsByDistributionStatusResponseTest.java
blob: 748a18187f63870a55b70c32435778c1bf2b9ee5 (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.aai.model;

import java.util.List;

import org.junit.Test;

public class GetServiceModelsByDistributionStatusResponseTest {

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

    @Test
    public void testGetResults() throws Exception {
        GetServiceModelsByDistributionStatusResponse testSubject;
        List<Result> result;

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

    @Test
    public void testSetResults() throws Exception {
        GetServiceModelsByDistributionStatusResponse testSubject;
        List<Result> results = null;

        // default test
        testSubject = createTestSubject();
        testSubject.setResults(results);
    }
}