Added oparent to sdc main
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / GroupTypeDefinitionTest.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.model;
22
23 import org.junit.Test;
24 import org.openecomp.sdc.be.datatypes.elements.GroupTypeDataDefinition;
25
26 import java.util.HashMap;
27 import java.util.List;
28
29
30 public class GroupTypeDefinitionTest {
31
32         private GroupTypeDefinition createTestSubject() {
33                 return new GroupTypeDefinition();
34         }
35
36         @Test
37         public void testCtor() throws Exception {
38                 new GroupTypeDefinition(new GroupTypeDataDefinition());
39         }
40         
41         @Test
42         public void testGetProperties() throws Exception {
43                 GroupTypeDefinition testSubject;
44                 List<PropertyDefinition> result;
45
46                 // default test
47                 testSubject = createTestSubject();
48                 result = testSubject.getProperties();
49         }
50
51         
52         @Test
53         public void testSetProperties() throws Exception {
54                 GroupTypeDefinition testSubject;
55                 List<PropertyDefinition> properties = null;
56
57                 // default test
58                 testSubject = createTestSubject();
59                 testSubject.setProperties(properties);
60         }
61
62         @Test
63         public void testGetCapabilityTypes() throws Exception {
64                 GroupTypeDefinition testSubject;
65                 List<PropertyDefinition> properties = null;
66
67                 // default test
68                 testSubject = createTestSubject();
69                 testSubject.getCapabilities();
70         }
71         
72         @Test
73         public void testSetCapabilityTypes() throws Exception {
74                 GroupTypeDefinition testSubject;
75
76                 // default test
77                 testSubject = createTestSubject();
78                 testSubject.setCapabilities(new HashMap<>());
79         }
80         
81         @Test
82         public void testToString() throws Exception {
83                 GroupTypeDefinition testSubject;
84                 String result;
85
86                 // default test
87                 testSubject = createTestSubject();
88                 result = testSubject.toString();
89         }
90 }