()
| 39 | public class TestELInJsp extends TomcatBaseTest { |
| 40 | |
| 41 | @Test |
| 42 | public void testBug36923() throws Exception { |
| 43 | getTomcatInstanceTestWebapp(false, true); |
| 44 | |
| 45 | ByteChunk res = getUrl("http://localhost:" + getPort() + "/test/bug36923.jsp"); |
| 46 | |
| 47 | String result = res.toString(); |
| 48 | assertEcho(result, "00-${hello world}"); |
| 49 | } |
| 50 | |
| 51 | @Test |
| 52 | public void testBug42565() throws Exception { |
nothing calls this directly
no test coverage detected