为Spring方法编写JUnit测试用例时遇到的问题

时间:2011-09-15 11:20:45

标签: java spring junit

我通过JUnit测试了以下方法,但是我很难映射属性

@RequestMapping("/a/{b}/c/{d}")
public @ResponseBody String getTranslatedXliff(Model model, 
   @PathVariable String templateCode, @PathVariable String localeCode){

    // ...
}

1 个答案:

答案 0 :(得分:1)

请致电:

@Test
public void test_whatever() {
    controller.getTranslatedXliff(myModel, "my template code", "my locale code");
}

注释方法参数没有什么神奇之处。