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