package org.ryu22e.nico2cal.controller.help; import org.slim3.tester.ControllerTestCase; import org.junit.Test; import static org.junit.Assert.*; import static org.hamcrest.CoreMatchers.*; public class IndexControllerTest extends ControllerTestCase { @Test public void run() throws Exception { tester.start("/help/index"); IndexController controller = tester.getController(); assertThat(controller, is(notNullValue())); assertThat(tester.isRedirect(), is(false)); assertThat(tester.getDestinationPath(), is("/help/index.jsp")); } }