aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/changeManagement/VnfDetailsTest.java
blob: 046a1f47e546ef27dcac1d9d3c02acd1eb491d37 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package org.onap.vid.changeManagement;

import org.junit.Assert;
import org.junit.Test;

public class VnfDetailsTest {

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

    @Test
    public void testGetUUID() throws Exception {
        VnfDetails testSubject;
        String result;

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

    @Test
    public void testSetUUID() throws Exception {
        VnfDetails testSubject;
        String uUID = "";

        // default test
        testSubject = createTestSubject();
        testSubject.setUUID(uUID);
    }

    @Test
    public void testGetInvariantUUID() throws Exception {
        VnfDetails testSubject;
        String result;

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

    @Test
    public void testSetInvariantUUID() throws Exception {
        VnfDetails testSubject;
        String invariantUUID = "";

        // default test
        testSubject = createTestSubject();
        testSubject.setInvariantUUID(invariantUUID);
    }

    @Test
    public void testEquals() throws Exception {
        VnfDetails testSubject;
        Object o = null;
        boolean result;

        // test 1
        testSubject = createTestSubject();
        o = null;
        result = testSubject.equals(o);
        Assert.assertEquals(false, result);
    }

    @Test
    public void testHashCode() throws Exception {
        VnfDetails testSubject;
        int result;

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

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

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