use of org.apache.tomcat.unittest.TesterRequest in project tomcat by apache.
the class TestResponse method testBug53062a.
@Test
public void testBug53062a() throws Exception {
Request req = new TesterRequest();
Response resp = new Response();
resp.setRequest(req);
String result = resp.toAbsolute("./bar.html");
Assert.assertEquals("http://localhost:8080/level1/level2/bar.html", result);
}
Aggregations