Upgrade sonar plugin
[vid.git] / vid-app-common / src / test / java / org / openecomp / vid / properties / VidPropertiesTest.java
1 package org.openecomp.vid.properties;
2
3 import org.junit.Test;
4
5
6 public class VidPropertiesTest {
7
8         private VidProperties createTestSubject() {
9                 return new VidProperties();
10         }
11
12
13         @Test
14         public void testGetAsdcModelNamespace() throws Exception {
15                 String result;
16
17                 // default test
18                 result = VidProperties.getAsdcModelNamespace();
19         }
20
21
22         @Test
23         public void testGetPropertyWithDefault() throws Exception {
24                 String propName = "";
25                 String defaultValue = "";
26                 String result;
27
28                 // default test
29                 result = VidProperties.getPropertyWithDefault(propName, defaultValue);
30         }
31 }