()
| 69 | } |
| 70 | |
| 71 | @Test |
| 72 | public void testBug53257a() throws Exception { |
| 73 | getTomcatInstanceTestWebapp(false, true); |
| 74 | |
| 75 | // foo;bar.jsp |
| 76 | ByteChunk res = getUrl("http://localhost:" + getPort() + "/test/bug53257/foo%3bbar.jsp"); |
| 77 | |
| 78 | // Check request completed |
| 79 | String result = res.toString(); |
| 80 | assertEcho(result, "OK"); |
| 81 | } |
| 82 | |
| 83 | @Test |
| 84 | public void testBug53257b() throws Exception { |
nothing calls this directly
no test coverage detected