我通过JUnit测试了以下方法,但是我很难映射属性
@RequestMapping("/a/{b}/c/{d}")
public @ResponseBody String getTranslatedXliff(Model model,
@PathVariable String templateCode, @PathVariable String localeCode){
// ...
}
答案 0 :(得分:1)
请致电:
@Test
public void test_whatever() {
controller.getTranslatedXliff(myModel, "my template code", "my locale code");
}
注释方法参数没有什么神奇之处。