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