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