AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-core / src / test / java / org / onap / aaf / auth / rserv / test / JU_Route.java
1 package org.onap.aaf.auth.rserv.test;
2
3 import static org.junit.Assert.*;
4 import org.junit.Before;
5 import static org.mockito.Matchers.*;
6 import static org.mockito.Mockito.*;
7 import org.junit.Test;
8 import org.mockito.Matchers;
9 import org.onap.aaf.auth.rserv.Route;
10 import org.onap.aaf.misc.env.Trans;
11 import org.onap.aaf.auth.rserv.*;
12
13 public class JU_Route {
14         Route route;
15         HttpCode httpCode;
16         HttpMethods httpMethod;
17         Trans trans;
18         
19         @Before
20         public void setUp() {           //TODO: AAF-111 complete when actual input is provided
21                 //httpMethod = Matchers.any(HttpMethods.class);
22                 //when(httpMethod.name()).thenReturn("test");
23         //      route = new Route(null,"path/to/place");
24         }
25         
26         
27         @Test
28         public void testAdd() {
29         //      route.add(httpCode, "path/to/place");
30         }
31         
32         @Test
33         public void testStart() {
34         //      trans = mock(Trans.class);
35         //      route.start(trans, "test", httpCode, "test");
36         }
37
38 }