Unit tests
[vid.git] / vid-app-common / src / test / java / org / onap / vid / model / VNFTest.java
1 package org.onap.vid.model;
2
3 import org.junit.Test;
4
5 public class VNFTest {
6
7     private VNF createTestSubject() {
8         return new VNF();
9     }
10
11     @Test
12     public void testNormalizeName() throws Exception {
13         String originalName = "test";
14         String result;
15
16         // default test
17         result = VNF.normalizeName(originalName);
18     }
19 }