aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/openecomp/vid/properties/VidPropertiesTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/openecomp/vid/properties/VidPropertiesTest.java')
-rw-r--r--vid-app-common/src/test/java/org/openecomp/vid/properties/VidPropertiesTest.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/openecomp/vid/properties/VidPropertiesTest.java b/vid-app-common/src/test/java/org/openecomp/vid/properties/VidPropertiesTest.java
new file mode 100644
index 000000000..7d318c74b
--- /dev/null
+++ b/vid-app-common/src/test/java/org/openecomp/vid/properties/VidPropertiesTest.java
@@ -0,0 +1,31 @@
+package org.openecomp.vid.properties;
+
+import org.junit.Test;
+
+
+public class VidPropertiesTest {
+
+ private VidProperties createTestSubject() {
+ return new VidProperties();
+ }
+
+
+ @Test
+ public void testGetAsdcModelNamespace() throws Exception {
+ String result;
+
+ // default test
+ result = VidProperties.getAsdcModelNamespace();
+ }
+
+
+ @Test
+ public void testGetPropertyWithDefault() throws Exception {
+ String propName = "";
+ String defaultValue = "";
+ String result;
+
+ // default test
+ result = VidProperties.getPropertyWithDefault(propName, defaultValue);
+ }
+} \ No newline at end of file