Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-core / src / test / java / org / onap / aaf / auth / rserv / test / JU_Routes.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
4  * * ===========================================================================
5  * * Copyright © 2017 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  ******************************************************************************/
22 package org.onap.aaf.auth.rserv.test;
23
24 import static org.junit.Assert.*;
25
26 import java.io.IOException;
27 import java.util.List;
28
29 import javax.servlet.ServletException;
30 import javax.servlet.http.HttpServletRequest;
31
32 import org.junit.Before;
33 import org.junit.Test;
34 import org.junit.runner.RunWith;
35 import org.mockito.Mock;
36 import static org.mockito.Mockito.*;
37 //import org.onap.aaf.auth.rserv.CodeSetter;
38 import org.onap.aaf.auth.rserv.Route;
39 import org.onap.aaf.auth.rserv.Routes;
40 import org.onap.aaf.misc.env.Trans;
41 import org.powermock.modules.junit4.PowerMockRunner;
42
43 @RunWith(PowerMockRunner.class)
44 public class JU_Routes {
45     Routes routes;
46     @Mock
47     HttpServletRequest reqMock;
48     //TODO: Gabe [JUnit] Not visible to junit
49     //CodeSetter<Trans> codeSetterMock;
50     Route<Trans> routeObj;
51     
52     @Before
53     public void setUp(){
54         routes = new Routes();
55     }
56     
57     @Test
58     public void testRouteReport(){
59         List listVal = routes.routeReport(); 
60         assertNotNull(listVal);
61     }
62     
63     @Test
64     public void testDerive() throws IOException, ServletException{
65         routeObj = routes.derive(reqMock, null);
66         
67     }
68     
69     
70     
71
72 }