Unit tests
[vid.git] / vid-app-common / src / test / java / org / onap / vid / aai / model / PnfPropertiesTest.java
diff --git a/vid-app-common/src/test/java/org/onap/vid/aai/model/PnfPropertiesTest.java b/vid-app-common/src/test/java/org/onap/vid/aai/model/PnfPropertiesTest.java
new file mode 100644 (file)
index 0000000..46709af
--- /dev/null
@@ -0,0 +1,33 @@
+package org.onap.vid.aai.model;
+
+import java.util.Map;
+
+import org.junit.Test;
+
+public class PnfPropertiesTest {
+
+    private PnfProperties createTestSubject() {
+        return new PnfProperties();
+    }
+
+    @Test
+    public void testGetAdditionalProperties() throws Exception {
+        PnfProperties testSubject;
+        Map<String, Object> result;
+
+        // default test
+        testSubject = createTestSubject();
+        result = testSubject.getAdditionalProperties();
+    }
+
+    @Test
+    public void testSetAdditionalProperty() throws Exception {
+        PnfProperties testSubject;
+        String name = "";
+        Object value = null;
+
+        // default test
+        testSubject = createTestSubject();
+        testSubject.setAdditionalProperty(name, value);
+    }
+}
\ No newline at end of file