jUnit测试Spring MVC控制器

时间:2013-08-06 07:46:41

标签: spring unit-testing spring-mvc junit

我正在对控制器进行单元测试:

    @Test
    public void testStudentInSectionForm() throws Exception {
        mockMvc.perform(get("/organizationnamanement"))
                .andExpect(status().isOk())
                .andExpect(redirectedUrl("organizationnamanement"));
    }

我在这里收到错误:

Url expected <organizationnamanement> but was null;

有谁能告诉我如何解决这个问题?

0 个答案:

没有答案