aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java/org/openecomp/sdc/be/config/validation/DeploymentArtifactHeatConfigurationTest.java
blob: d2c394bff26597b7024381808621172888eeedad (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package org.openecomp.sdc.be.config.validation;

import java.util.Map;

import org.junit.Test;


public class DeploymentArtifactHeatConfigurationTest {

	private DeploymentArtifactHeatConfiguration createTestSubject() {
		return new DeploymentArtifactHeatConfiguration();
	}

	
	@Test
	public void testGetHeat_template_version() throws Exception {
		DeploymentArtifactHeatConfiguration testSubject;
		String result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getHeat_template_version();
	}

	
	@Test
	public void testSetHeat_template_version() throws Exception {
		DeploymentArtifactHeatConfiguration testSubject;
		String heat_template_version = "";

		// default test
		testSubject = createTestSubject();
		testSubject.setHeat_template_version(heat_template_version);
	}

	
	@Test
	public void testGetResources() throws Exception {
		DeploymentArtifactHeatConfiguration testSubject;
		Map<String, Object> result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getResources();
	}

	
	@Test
	public void testSetResources() throws Exception {
		DeploymentArtifactHeatConfiguration testSubject;
		Map<String, Object> resources = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setResources(resources);
	}
}