b0306ce86baa42db24df571429feb846f5562bc2
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / servlets / AdditionalInformationServletTest.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.servlets;
22
23 import javax.servlet.http.HttpServletRequest;
24 import javax.ws.rs.core.Response;
25
26 import org.junit.Test;
27
28
29 public class AdditionalInformationServletTest {
30
31         private AdditionalInformationServlet createTestSubject() {
32                 return new AdditionalInformationServlet();
33         }
34
35         
36         @Test
37         public void testCreateResourceAdditionalInformationLabel() throws Exception {
38                 AdditionalInformationServlet testSubject;
39                 String resourceId = "";
40                 String data = "";
41                 HttpServletRequest request = null;
42                 String userUserId = "";
43                 Response result;
44
45                 // default test
46                 testSubject = createTestSubject();
47                 
48         }
49
50         
51         @Test
52         public void testCreateServiceAdditionalInformationLabel() throws Exception {
53                 AdditionalInformationServlet testSubject;
54                 String serviceId = "";
55                 String data = "";
56                 HttpServletRequest request = null;
57                 String userUserId = "";
58                 Response result;
59
60                 // default test
61                 testSubject = createTestSubject();
62                 
63         }
64
65         
66         @Test
67         public void testUpdateResourceAdditionalInformationLabel() throws Exception {
68                 AdditionalInformationServlet testSubject;
69                 String resourceId = "";
70                 String labelId = "";
71                 String data = "";
72                 HttpServletRequest request = null;
73                 String userId = "";
74                 Response result;
75
76                 // default test
77                 testSubject = createTestSubject();
78                 
79         }
80
81         
82         @Test
83         public void testUpdateServiceAdditionalInformationLabel() throws Exception {
84                 AdditionalInformationServlet testSubject;
85                 String serviceId = "";
86                 String labelId = "";
87                 String data = "";
88                 HttpServletRequest request = null;
89                 String userId = "";
90                 Response result;
91
92                 // default test
93                 testSubject = createTestSubject();
94                 
95         }
96
97         
98         @Test
99         public void testUpdateResourceAdditionalInformationLabel_1() throws Exception {
100                 AdditionalInformationServlet testSubject;
101                 String resourceId = "";
102                 String labelId = "";
103                 HttpServletRequest request = null;
104                 String userId = "";
105                 Response result;
106
107                 // default test
108                 testSubject = createTestSubject();
109                 
110         }
111
112         
113         @Test
114         public void testDeleteServiceAdditionalInformationLabel() throws Exception {
115                 AdditionalInformationServlet testSubject;
116                 String serviceId = "";
117                 String labelId = "";
118                 HttpServletRequest request = null;
119                 String userId = "";
120                 Response result;
121
122                 // default test
123                 testSubject = createTestSubject();
124                 
125         }
126
127         
128         @Test
129         public void testGetResourceAdditionalInformationLabel() throws Exception {
130                 AdditionalInformationServlet testSubject;
131                 String resourceId = "";
132                 String labelId = "";
133                 HttpServletRequest request = null;
134                 String userId = "";
135                 Response result;
136
137                 // default test
138                 testSubject = createTestSubject();
139                 
140         }
141
142         
143         @Test
144         public void testGetServiceAdditionalInformationLabel() throws Exception {
145                 AdditionalInformationServlet testSubject;
146                 String serviceId = "";
147                 String labelId = "";
148                 HttpServletRequest request = null;
149                 String userId = "";
150                 Response result;
151
152                 // default test
153                 testSubject = createTestSubject();
154                 
155         }
156
157         
158         @Test
159         public void testGetAllResourceAdditionalInformationLabel() throws Exception {
160                 AdditionalInformationServlet testSubject;
161                 String resourceId = "";
162                 HttpServletRequest request = null;
163                 String userId = "";
164                 Response result;
165
166                 // default test
167                 testSubject = createTestSubject();
168                 
169         }
170
171         
172         @Test
173         public void testGetAllServiceAdditionalInformationLabel() throws Exception {
174                 AdditionalInformationServlet testSubject;
175                 String serviceId = "";
176                 HttpServletRequest request = null;
177                 String userId = "";
178                 Response result;
179
180                 // default test
181                 testSubject = createTestSubject();
182                 
183         }
184
185         
186
187 }