aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/openecomp/vid/properties/VidPropertiesTest.java
blob: 7d318c74b9be3b75435e0456ed627c77fc13cff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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);
	}
}