Refactoring Consolidation Service
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / servlets / TypesFetchServletTest.java
1 package org.openecomp.sdc.be.servlets;
2
3 import javax.servlet.ServletContext;
4 import javax.servlet.http.HttpServletRequest;
5 import javax.ws.rs.core.Response;
6
7 import org.junit.Test;
8 import org.openecomp.sdc.be.components.impl.PropertyBusinessLogic;
9
10 public class TypesFetchServletTest {
11
12         private TypesFetchServlet createTestSubject() {
13                 return new TypesFetchServlet();
14         }
15
16         
17         @Test
18         public void testGetAllDataTypesServlet() throws Exception {
19                 TypesFetchServlet testSubject;
20                 HttpServletRequest request = null;
21                 String userId = "";
22                 Response result;
23
24                 // default test
25                 testSubject = createTestSubject();
26         }
27
28         
29         @Test
30         public void testGetPropertyBL() throws Exception {
31                 TypesFetchServlet testSubject;
32                 ServletContext context = null;
33                 PropertyBusinessLogic result;
34
35                 // default test
36                 testSubject = createTestSubject();
37         }
38 }