我想测试我的控制器类及其方法。
我的控制器方法如下所示:
@RequestMapping(value = "/updateUserStory/{usid}", method = RequestMethod.GET)
public String updateUserStory(@PathVariable("trrid") Integer trrID, @PathVariable("usid") Integer userstoryID, Model model ){
UserStory userStory = this.userStoryService.getUserStoryById(userstoryID);
model.addAttribute("userstory", userStory);
model.addAttribute("trrID", trrID);
return "updateUserStory";
}
我的测试方法如下:
public void updateUserStory() throws Exception {
Model model = mockModel();
UserStory userStory = new UserStory();
userStory.setId(1);
EasyMock.expect(userStoryService.getUserStoryById(1)).andReturn(userStory);
EasyMock.replay(userStoryService);
String test = controller.updateUserStory(1, 1, model );
EasyMock.verify(userStoryService);
Assert.assertEquals("updateUserStory", test);
}
我在@Mock
userStoryService
@Mock
private UserStoryServiceImpl userStoryService;
和@TestSubject
用于UserStoryController
(在测试中简称为控制器)。
@TestSubject
UserStoryController controller = new UserStoryController();
运行测试时,我会在NullPointerException
行获得A EasyMock.expect
。我不知道这是怎么失败的。我在嘲笑正确的方法。
答案 0 :(得分:0)
我看到两个可能的原因。
<强> 1。您没有使用任何跑步者或规则。
要注入模拟,EasyMock需要一个JUnit规则
@Rule
public EasyMockRule mocks = new EasyMockRule(this);
或跑步者
@RunWith(EasyMockRunner.class)
public class MyTest {
<强> 2。字段类型为UserStoryService
不是UserStoryServiceImpl
。所以你应该模仿UserStoryService
。