4448a0bbc201f1a27701620d844c68a34636bbe9
[aaf/authz.git] / auth / auth-core / src / test / java / org / onap / aaf / auth / rserv / test / JU_Route.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 import org.junit.Before;
26 import static org.mockito.Matchers.*;
27 import static org.mockito.Mockito.*;
28 import org.junit.Test;
29 import org.mockito.Matchers;
30 import org.onap.aaf.auth.rserv.Route;
31 import org.onap.aaf.misc.env.Trans;
32 import org.onap.aaf.auth.rserv.*;
33
34 public class JU_Route {
35         Route route;
36         HttpCode httpCode;
37         HttpMethods httpMethod;
38         Trans trans;
39         
40         @Before
41         public void setUp() {           //TODO: AAF-111 complete when actual input is provided
42                 //httpMethod = Matchers.any(HttpMethods.class);
43                 //when(httpMethod.name()).thenReturn("test");
44         //      route = new Route(null,"path/to/place");
45         }
46         
47         
48         @Test
49         public void testAdd() {
50         //      route.add(httpCode, "path/to/place");
51         }
52         
53         @Test
54         public void testStart() {
55         //      trans = mock(Trans.class);
56         //      route.start(trans, "test", httpCode, "test");
57         }
58
59 }