Unit tests
[vid.git] / vid-app-common / src / test / java / org / onap / vid / aai / model / PnfResultTest.java
1 package org.onap.vid.aai.model;
2
3 import java.util.Map;
4
5 import org.junit.Test;
6
7 public class PnfResultTest {
8
9     private PnfResult createTestSubject() {
10         return new PnfResult();
11     }
12
13     @Test
14     public void testGetAdditionalProperties() throws Exception {
15         PnfResult 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         PnfResult testSubject;
26         String name = "";
27         Object value = null;
28
29         // default test
30         testSubject = createTestSubject();
31         testSubject.setAdditionalProperty(name, value);
32     }
33 }