add test for isShutdown

Signed-off-by: Juha Paananen <juha.paananen@gmail.com>
This commit is contained in:
Juha Paananen 2017-01-11 14:44:35 +02:00
parent 59625b1332
commit 46b7037ca8
1 changed files with 5 additions and 1 deletions

View File

@ -447,7 +447,11 @@ public class ContextHandlerTest
Assert.assertTrue(handler.isProtectedTarget("/ABC/7777"));
}
@Test
public void testIsShutdown() {
ContextHandler handler = new ContextHandler();
Assert.assertEquals(false, handler.isShutdown());
}
private void checkResourcePathsForExampleWebApp(String root) throws IOException
{