aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/model/RequestReferencesContainerTest.java
blob: 4587f4e52a2c11c436c734c0479e429cd2f352f2 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package org.onap.vid.model;

import java.util.Map;

import org.junit.Test;
import org.onap.vid.domain.mso.RequestReferences;

public class RequestReferencesContainerTest {

    private RequestReferencesContainer createTestSubject() {
        return new RequestReferencesContainer(new RequestReferences());
    }

    @Test
    public void testGetAdditionalProperties() throws Exception {
        RequestReferencesContainer testSubject;
        Map<String, Object> result;

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

    @Test
    public void testSetAdditionalProperty() throws Exception {
        RequestReferencesContainer testSubject;
        String name = "";
        Object value = null;

        // default test
        testSubject = createTestSubject();
        testSubject.setAdditionalProperty(name, value);
    }

    @Test
    public void testGetRequestReferences() throws Exception {
        RequestReferencesContainer testSubject;
        RequestReferences result;

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

    @Test
    public void testToString() throws Exception {
        RequestReferencesContainer testSubject;
        String result;

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