124125126127128129130131
*/ @Test public void getController() throws Exception { assertThat(tester.getController(), is(nullValue())); tester.start("/hello"); HelloController controller = tester.getController(); assertThat(controller, is(notNullValue())); }