Upgrade sonar plugin
[vid.git] / vid-app-common / src / test / java / org / openecomp / vid / aai / ServicePropertiesTest.java
1 package org.openecomp.vid.aai;
2
3 import java.util.Map;
4
5 import org.junit.Test;
6
7 public class ServicePropertiesTest {
8
9         private ServiceProperties createTestSubject() {
10                 return new ServiceProperties();
11         }
12
13         @Test
14         public void testGetAdditionalProperties() throws Exception {
15                 ServiceProperties testSubject;
16                 Map<String, Object> result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.getAdditionalProperties();
21         }
22
23         @Test
24         public void testSetAdditionalProperty() throws Exception {
25                 ServiceProperties testSubject;
26                 String name = "";
27                 Object value = null;
28
29                 // default test
30                 testSubject = createTestSubject();
31                 testSubject.setAdditionalProperty(name, value);
32         }
33 }