Merge "Additinal fixes for resources not being released"
[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.annotation.Generated;
4 import javax.servlet.ServletContext;
5 import javax.servlet.http.HttpServletRequest;
6 import javax.ws.rs.core.Response;
7
8 import org.junit.Test;
9 import org.openecomp.sdc.be.components.impl.AdditionalInformationBusinessLogic;
10 import org.openecomp.sdc.be.datatypes.enums.NodeTypeEnum;
11
12
13 public class AdditionalInformationServletTest {
14
15         private AdditionalInformationServlet createTestSubject() {
16                 return new AdditionalInformationServlet();
17         }
18
19         
20         @Test
21         public void testCreateResourceAdditionalInformationLabel() throws Exception {
22                 AdditionalInformationServlet testSubject;
23                 String resourceId = "";
24                 String data = "";
25                 HttpServletRequest request = null;
26                 String userUserId = "";
27                 Response result;
28
29                 // default test
30                 testSubject = createTestSubject();
31                 
32         }
33
34         
35         @Test
36         public void testCreateServiceAdditionalInformationLabel() throws Exception {
37                 AdditionalInformationServlet testSubject;
38                 String serviceId = "";
39                 String data = "";
40                 HttpServletRequest request = null;
41                 String userUserId = "";
42                 Response result;
43
44                 // default test
45                 testSubject = createTestSubject();
46                 
47         }
48
49         
50         @Test
51         public void testUpdateResourceAdditionalInformationLabel() throws Exception {
52                 AdditionalInformationServlet testSubject;
53                 String resourceId = "";
54                 String labelId = "";
55                 String data = "";
56                 HttpServletRequest request = null;
57                 String userId = "";
58                 Response result;
59
60                 // default test
61                 testSubject = createTestSubject();
62                 
63         }
64
65         
66         @Test
67         public void testUpdateServiceAdditionalInformationLabel() throws Exception {
68                 AdditionalInformationServlet testSubject;
69                 String serviceId = "";
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 testUpdateResourceAdditionalInformationLabel_1() throws Exception {
84                 AdditionalInformationServlet testSubject;
85                 String resourceId = "";
86                 String labelId = "";
87                 HttpServletRequest request = null;
88                 String userId = "";
89                 Response result;
90
91                 // default test
92                 testSubject = createTestSubject();
93                 
94         }
95
96         
97         @Test
98         public void testDeleteServiceAdditionalInformationLabel() throws Exception {
99                 AdditionalInformationServlet testSubject;
100                 String serviceId = "";
101                 String labelId = "";
102                 HttpServletRequest request = null;
103                 String userId = "";
104                 Response result;
105
106                 // default test
107                 testSubject = createTestSubject();
108                 
109         }
110
111         
112         @Test
113         public void testGetResourceAdditionalInformationLabel() throws Exception {
114                 AdditionalInformationServlet testSubject;
115                 String resourceId = "";
116                 String labelId = "";
117                 HttpServletRequest request = null;
118                 String userId = "";
119                 Response result;
120
121                 // default test
122                 testSubject = createTestSubject();
123                 
124         }
125
126         
127         @Test
128         public void testGetServiceAdditionalInformationLabel() throws Exception {
129                 AdditionalInformationServlet testSubject;
130                 String serviceId = "";
131                 String labelId = "";
132                 HttpServletRequest request = null;
133                 String userId = "";
134                 Response result;
135
136                 // default test
137                 testSubject = createTestSubject();
138                 
139         }
140
141         
142         @Test
143         public void testGetAllResourceAdditionalInformationLabel() throws Exception {
144                 AdditionalInformationServlet testSubject;
145                 String resourceId = "";
146                 HttpServletRequest request = null;
147                 String userId = "";
148                 Response result;
149
150                 // default test
151                 testSubject = createTestSubject();
152                 
153         }
154
155         
156         @Test
157         public void testGetAllServiceAdditionalInformationLabel() throws Exception {
158                 AdditionalInformationServlet testSubject;
159                 String serviceId = "";
160                 HttpServletRequest request = null;
161                 String userId = "";
162                 Response result;
163
164                 // default test
165                 testSubject = createTestSubject();
166                 
167         }
168
169         
170
171 }