()
| 104 | } |
| 105 | |
| 106 | @Test |
| 107 | public void testBug53257d() throws Exception { |
| 108 | getTomcatInstanceTestWebapp(false, true); |
| 109 | |
| 110 | // foo%bar.jsp |
| 111 | ByteChunk res = getUrl("http://localhost:" + getPort() + "/test/bug53257/foo%25bar.jsp"); |
| 112 | |
| 113 | // Check request completed |
| 114 | String result = res.toString(); |
| 115 | assertEcho(result, "OK"); |
| 116 | } |
| 117 | |
| 118 | @Test |
| 119 | public void testBug53257e() throws Exception { |
nothing calls this directly
no test coverage detected