aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/properties/VidPropertiesTest.java
blob: f256ba027c6aca976a8bab742c33a06b79ca938a (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.onap.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);
	}
}