elvyssoares

RoutingHandlerTest - Original

May 19th, 2020
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. @Test
  2. public void withoutSessionHandler() throws Exception {
  3.     new Server().setHandler(handler);
  4.  
  5.     handler.start();
  6.    
  7.     try {
  8.         assertThat(getSessionHandlers(handler)).isEmpty();
  9.     } finally {
  10.         handler.stop();
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment