Refactoring Consolidation Service
[sdc.git] / common-app-api / src / test / java / org / openecomp / sdc / be / config / validation / DeploymentArtifactHeatConfigurationTest.java
1 package org.openecomp.sdc.be.config.validation;
2
3 import java.util.Map;
4
5 import org.junit.Test;
6
7
8 public class DeploymentArtifactHeatConfigurationTest {
9
10         private DeploymentArtifactHeatConfiguration createTestSubject() {
11                 return new DeploymentArtifactHeatConfiguration();
12         }
13
14         
15         @Test
16         public void testGetHeat_template_version() throws Exception {
17                 DeploymentArtifactHeatConfiguration testSubject;
18                 String result;
19
20                 // default test
21                 testSubject = createTestSubject();
22                 result = testSubject.getHeat_template_version();
23         }
24
25         
26         @Test
27         public void testSetHeat_template_version() throws Exception {
28                 DeploymentArtifactHeatConfiguration testSubject;
29                 String heat_template_version = "";
30
31                 // default test
32                 testSubject = createTestSubject();
33                 testSubject.setHeat_template_version(heat_template_version);
34         }
35
36         
37         @Test
38         public void testGetResources() throws Exception {
39                 DeploymentArtifactHeatConfiguration testSubject;
40                 Map<String, Object> result;
41
42                 // default test
43                 testSubject = createTestSubject();
44                 result = testSubject.getResources();
45         }
46
47         
48         @Test
49         public void testSetResources() throws Exception {
50                 DeploymentArtifactHeatConfiguration testSubject;
51                 Map<String, Object> resources = null;
52
53                 // default test
54                 testSubject = createTestSubject();
55                 testSubject.setResources(resources);
56         }
57 }