Added oparent to sdc main
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / servlets / LifecycleServletTest.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 import org.openecomp.sdc.be.model.LifeCycleTransitionEnum;
28 import org.openecomp.sdc.be.model.User;
29
30 import fj.data.Either;
31
32 public class LifecycleServletTest {
33
34         private LifecycleServlet createTestSubject() {
35                 return new LifecycleServlet();
36         }
37
38         
39         @Test
40         public void testChangeResourceState() throws Exception {
41                 LifecycleServlet testSubject;
42                 String jsonChangeInfo = "";
43                 String componentCollection = "";
44                 String lifecycleTransition = "";
45                 String componentId = "";
46                 HttpServletRequest request = null;
47                 String userId = "";
48                 Response result;
49
50                 // default test
51                 testSubject = createTestSubject();
52         }
53
54         
55         @Test
56         public void testValidateTransitionEnum() throws Exception {
57                 LifecycleServlet testSubject;
58                 String lifecycleTransition = "";
59                 User user = null;
60                 Either<LifeCycleTransitionEnum, Response> result;
61
62                 // default test
63                 testSubject = createTestSubject();
64         }
65 }