Added oparent to sdc main
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / CapReqDefTest.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
25 import java.util.HashMap;
26 import java.util.List;
27 import java.util.Map;
28
29
30 public class CapReqDefTest {
31
32         private CapReqDef createTestSubject() {
33                 return new CapReqDef();
34         }
35
36         @Test
37         public void testCtor() throws Exception {
38                 new CapReqDef(new HashMap<>(), new HashMap<>());
39         }
40         
41         @Test
42         public void testGetCapabilities() throws Exception {
43                 CapReqDef testSubject;
44                 Map<String, List<CapabilityDefinition>> result;
45
46                 // default test
47                 testSubject = createTestSubject();
48                 result = testSubject.getCapabilities();
49         }
50
51         
52         @Test
53         public void testGetRequirements() throws Exception {
54                 CapReqDef testSubject;
55                 Map<String, List<RequirementDefinition>> result;
56
57                 // default test
58                 testSubject = createTestSubject();
59                 result = testSubject.getRequirements();
60         }
61
62         
63         @Test
64         public void testSetCapabilities() throws Exception {
65                 CapReqDef testSubject;
66                 Map<String, List<CapabilityDefinition>> capabilities = null;
67
68                 // default test
69                 testSubject = createTestSubject();
70                 testSubject.setCapabilities(capabilities);
71         }
72
73         
74         @Test
75         public void testSetRequirements() throws Exception {
76                 CapReqDef testSubject;
77                 Map<String, List<RequirementDefinition>> requirements = null;
78
79                 // default test
80                 testSubject = createTestSubject();
81                 testSubject.setRequirements(requirements);
82         }
83 }