Added oparent to sdc main
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / TargetCapabilityRelDefTest.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.LinkedList;
26 import java.util.List;
27
28 public class TargetCapabilityRelDefTest {
29
30         private TargetCapabilityRelDef createTestSubject() {
31                 return new TargetCapabilityRelDef();
32         }
33
34         @Test
35         public void testCtor() throws Exception {
36                 new TargetCapabilityRelDef("mock", new LinkedList<>());
37         }
38         
39         @Test
40         public void testGetToNode() throws Exception {
41                 TargetCapabilityRelDef testSubject;
42                 String result;
43
44                 // default test
45                 testSubject = createTestSubject();
46                 result = testSubject.getToNode();
47         }
48
49         @Test
50         public void testSetToNode() throws Exception {
51                 TargetCapabilityRelDef testSubject;
52                 String toNode = "";
53
54                 // default test
55                 testSubject = createTestSubject();
56                 testSubject.setToNode(toNode);
57         }
58
59         @Test
60         public void testGetRelationships() throws Exception {
61                 TargetCapabilityRelDef testSubject;
62                 List<CapabilityRequirementRelationship> result;
63
64                 // default test
65                 testSubject = createTestSubject();
66                 result = testSubject.getRelationships();
67         }
68
69         @Test
70         public void testResolveSingleRelationship() throws Exception {
71                 TargetCapabilityRelDef testSubject;
72                 CapabilityRequirementRelationship result;
73
74                 // default test
75                 testSubject = createTestSubject();
76                 result = testSubject.resolveSingleRelationship();
77         }
78
79         @Test
80         public void testGetUid() throws Exception {
81                 TargetCapabilityRelDef testSubject;
82                 String result;
83
84                 // default test
85                 testSubject = createTestSubject();
86                 result = testSubject.getUid();
87         }
88
89         @Test
90         public void testSetUid() throws Exception {
91                 TargetCapabilityRelDef testSubject;
92                 String uid = "";
93
94                 // default test
95                 testSubject = createTestSubject();
96                 testSubject.setUid(uid);
97         }
98
99         @Test
100         public void testSetRelationships() throws Exception {
101                 TargetCapabilityRelDef testSubject;
102                 List<CapabilityRequirementRelationship> relationships = null;
103
104                 // default test
105                 testSubject = createTestSubject();
106                 testSubject.setRelationships(relationships);
107         }
108
109         @Test
110         public void testToString() throws Exception {
111                 TargetCapabilityRelDef testSubject;
112                 String result;
113
114                 // default test
115                 testSubject = createTestSubject();
116                 result = testSubject.toString();
117         }
118 }