()
| 92 | } |
| 93 | |
| 94 | @Test |
| 95 | public void testBug53257c() throws Exception { |
| 96 | getTomcatInstanceTestWebapp(false, true); |
| 97 | |
| 98 | // foo#bar.jsp |
| 99 | ByteChunk res = getUrl("http://localhost:" + getPort() + "/test/bug53257/foo%23bar.jsp"); |
| 100 | |
| 101 | // Check request completed |
| 102 | String result = res.toString(); |
| 103 | assertEcho(result, "OK"); |
| 104 | } |
| 105 | |
| 106 | @Test |
| 107 | public void testBug53257d() throws Exception { |
nothing calls this directly
no test coverage detected