()
| 74 | } |
| 75 | |
| 76 | @Test |
| 77 | public void testBug44994() throws Exception { |
| 78 | getTomcatInstanceTestWebapp(false, true); |
| 79 | |
| 80 | ByteChunk res = getUrl("http://localhost:" + getPort() + "/test/bug44994.jsp"); |
| 81 | |
| 82 | String result = res.toString(); |
| 83 | assertEcho(result, "00-none"); |
| 84 | assertEcho(result, "01-one"); |
| 85 | assertEcho(result, "02-many"); |
| 86 | } |
| 87 | |
| 88 | @Test |
| 89 | public void testBug45427() throws Exception { |
nothing calls this directly
no test coverage detected