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