aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/mso/model/OperationalEnvironmentDeactivateInfoTest.java
blob: 70ed02f317e63429d12beb0236b3a1baa81e9512 (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
package org.onap.vid.mso.model;

import org.junit.Test;

public class OperationalEnvironmentDeactivateInfoTest {

    private OperationalEnvironmentDeactivateInfo createTestSubject() {
        return new OperationalEnvironmentDeactivateInfo("", "");
    }

    @Test
    public void testGetUserId() throws Exception {
        OperationalEnvironmentDeactivateInfo testSubject;
        String result;

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

    @Test
    public void testGetOperationalEnvironmentId() throws Exception {
        OperationalEnvironmentDeactivateInfo testSubject;
        String result;

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

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

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