Added oparent to sdc main
[sdc.git] / common-be / src / test / java / org / openecomp / sdc / be / datatypes / elements / AdditionalInfoParameterInfoTest.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 public class AdditionalInfoParameterInfoTest {
26
27         private AdditionalInfoParameterInfo createTestSubject() {
28                 return new AdditionalInfoParameterInfo();
29         }
30         
31         @Test
32         public void testConstructors() throws Exception {
33
34                 // default test
35                 new AdditionalInfoParameterInfo("stam", "stam");
36                 new AdditionalInfoParameterInfo("stam", "stam", "stam");
37         }
38         
39         @Test
40         public void testGetUniqueId() throws Exception {
41                 AdditionalInfoParameterInfo testSubject;
42                 String result;
43
44                 // default test
45                 testSubject = createTestSubject();
46                 result = testSubject.getUniqueId();
47         }
48
49         @Test
50         public void testSetUniqueId() throws Exception {
51                 AdditionalInfoParameterInfo testSubject;
52                 String uniqueId = "";
53
54                 // default test
55                 testSubject = createTestSubject();
56                 testSubject.setUniqueId(uniqueId);
57         }
58
59         @Test
60         public void testGetKey() throws Exception {
61                 AdditionalInfoParameterInfo testSubject;
62                 String result;
63
64                 // default test
65                 testSubject = createTestSubject();
66                 result = testSubject.getKey();
67         }
68
69         @Test
70         public void testSetKey() throws Exception {
71                 AdditionalInfoParameterInfo testSubject;
72                 String key = "";
73
74                 // default test
75                 testSubject = createTestSubject();
76                 testSubject.setKey(key);
77         }
78
79         @Test
80         public void testGetValue() throws Exception {
81                 AdditionalInfoParameterInfo testSubject;
82                 String result;
83
84                 // default test
85                 testSubject = createTestSubject();
86                 result = testSubject.getValue();
87         }
88
89         @Test
90         public void testSetValue() throws Exception {
91                 AdditionalInfoParameterInfo testSubject;
92                 String value = "";
93
94                 // default test
95                 testSubject = createTestSubject();
96                 testSubject.setValue(value);
97         }
98
99         @Test
100         public void testToString() throws Exception {
101                 AdditionalInfoParameterInfo testSubject;
102                 String result;
103
104                 // default test
105                 testSubject = createTestSubject();
106                 result = testSubject.toString();
107         }
108 }