summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/model/VNFTest.java
blob: cc8a3b808725226d69c87e60d342885a7a75a594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.onap.vid.model;

import org.junit.Test;

public class VNFTest {

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

    @Test
    public void testNormalizeName() throws Exception {
        String originalName = "test";
        String result;

        // default test
        result = VNF.normalizeName(originalName);
    }
}