1 package org.openecomp.sdc.be.config.validation;
5 import javax.annotation.Generated;
10 public class DeploymentArtifactHeatConfigurationTest {
12 private DeploymentArtifactHeatConfiguration createTestSubject() {
13 return new DeploymentArtifactHeatConfiguration();
18 public void testGetHeat_template_version() throws Exception {
19 DeploymentArtifactHeatConfiguration testSubject;
23 testSubject = createTestSubject();
24 result = testSubject.getHeat_template_version();
29 public void testSetHeat_template_version() throws Exception {
30 DeploymentArtifactHeatConfiguration testSubject;
31 String heat_template_version = "";
34 testSubject = createTestSubject();
35 testSubject.setHeat_template_version(heat_template_version);
40 public void testGetResources() throws Exception {
41 DeploymentArtifactHeatConfiguration testSubject;
42 Map<String, Object> result;
45 testSubject = createTestSubject();
46 result = testSubject.getResources();
51 public void testSetResources() throws Exception {
52 DeploymentArtifactHeatConfiguration testSubject;
53 Map<String, Object> resources = null;
56 testSubject = createTestSubject();
57 testSubject.setResources(resources);