Added oparent to sdc main
[sdc.git] / common-be / src / test / java / org / openecomp / sdc / be / datatypes / elements / MapArtifactDataDefinitionTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.datatypes.elements;
22
23 import org.junit.Test;
24
25 import java.util.HashMap;
26 import java.util.Map;
27
28
29 public class MapArtifactDataDefinitionTest {
30
31         private MapArtifactDataDefinition createTestSubject() {
32                 return new MapArtifactDataDefinition();
33         }
34
35         @Test
36         public void testOverloadConstructors() throws Exception {
37                 MapArtifactDataDefinition testSubject;
38                 Map<String, ArtifactDataDefinition> result;
39
40                 // default test
41                 testSubject = createTestSubject();
42                 new MapArtifactDataDefinition(new HashMap<>());
43                 new MapArtifactDataDefinition(testSubject, "");
44         }
45         
46         @Test
47         public void testGetMapToscaDataDefinition() throws Exception {
48                 MapArtifactDataDefinition testSubject;
49                 Map<String, ArtifactDataDefinition> result;
50
51                 // default test
52                 testSubject = createTestSubject();
53                 result = testSubject.getMapToscaDataDefinition();
54         }
55
56         
57         @Test
58         public void testSetMapToscaDataDefinition() throws Exception {
59                 MapArtifactDataDefinition testSubject;
60                 Map<String, ArtifactDataDefinition> mapToscaDataDefinition = null;
61
62                 // default test
63                 testSubject = createTestSubject();
64                 testSubject.setMapToscaDataDefinition(mapToscaDataDefinition);
65         }
66
67         
68         @Test
69         public void testGetParentName() throws Exception {
70                 MapArtifactDataDefinition testSubject;
71                 String result;
72
73                 // default test
74                 testSubject = createTestSubject();
75                 result = testSubject.getParentName();
76         }
77
78         
79         @Test
80         public void testSetParentName() throws Exception {
81                 MapArtifactDataDefinition testSubject;
82                 String parentName = "";
83
84                 // default test
85                 testSubject = createTestSubject();
86                 testSubject.setParentName(parentName);
87         }
88 }