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

import org.junit.Test;

public class NewNetworkTest {

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

    @Test
    public void testGetModelCustomizationName() throws Exception {
        NewNetwork testSubject;
        String result;

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

    @Test
    public void testSetModelCustomizationName() throws Exception {
        NewNetwork testSubject;
        String modelCustomizationName = "";

        // default test
        testSubject = createTestSubject();
        testSubject.setModelCustomizationName(modelCustomizationName);
    }
}