EasyMock模拟方法调用在重置模拟对象后第二次调用时返回null

时间:2013-04-16 04:49:37

标签: java mocking easymock powermock

这是我在Stackoverflow中的第一篇文章,到目前为止,我一直是本论坛的活跃读者,我在这里发布了我的第一个问题。

这是关于EasyMock的用法,我是EasyMock的新用户,在下面的示例代码中,我设置了一个带有相同对象的协作者方法的期望(无论它是相同的对象还是不同的对象,但结果是相同的),我在退出测试方法之前重置。但是当第二次测试执行时,模拟方法返回null,我不知道为什么会这样。

如果我运行方法

@RunWith(PowerMockRunner.class)
@PrepareForTest({CollaboratorWithMethod.class, ClassTobeTested.class})
public class TestClassTobeTested {

private TestId testId = new TestId();

 @Test
public void testMethodtoBeTested() throws Exception{
    CollaboratorWithMethod mockCollaborator = EasyMock.createMock(CollaboratorWithMethod.class);
    PowerMock.expectNew(CollaboratorWithMethod.class).andReturn(mockCollaborator);
    EasyMock.expect(mockCollaborator.testMethod("test")).andReturn(testId);
    PowerMock.replay(CollaboratorWithMethod.class);
    EasyMock.replay(mockCollaborator);
    ClassTobeTested testObj = new ClassTobeTested();
    try {
        testObj.methodToBeTested(); 
    } finally {
        EasyMock.reset(mockCollaborator);
        PowerMock.reset(CollaboratorWithMethod.class);
    }
}  

@Test
public void testMothedtoBeTestWithException() throws Exception {
    CollaboratorWithMethod mockCollaborator = EasyMock.createMock(CollaboratorWithMethod.class);
    PowerMock.expectNew(CollaboratorWithMethod.class).andReturn(mockCollaborator);
    EasyMock.expect(mockCollaborator.testMethod("test")).andReturn(testId);
    PowerMock.replay(CollaboratorWithMethod.class);
    EasyMock.replay(mockCollaborator);
    ClassTobeTested testObj = new ClassTobeTested();
    try {
        testObj.methodToBeTested();
    } finally {
        EasyMock.reset(mockCollaborator);
        PowerMock.reset(CollaboratorWithMethod.class);
    }
}

}

这是我的Collaborator类

public class CollaboratorWithMethod {
   public TestId testMethod(String text) throws IllegalStateException {
     if (text != null) {
        return new TestId();
     } else {
        throw new IllegalStateException();
     }
  }
}

这是我的课程

public class ClassTobeTested {

public static final CollaboratorWithMethod collaborator = new CollaboratorWithMethod();

public void methodToBeTested () throws IOException{
    try {
        TestId testid = collaborator.testMethod("test");
        System.out.println("Testid returned "+ testid);
    } catch (IllegalStateException e) {
        throw new IOException();
    }
}
}

我正在寻求你们的帮助,以了解这里到底发生了什么

1 个答案:

答案 0 :(得分:0)

班级collaborator中的ClassTobeTested变量是最终的。第一个测试用例使用模拟对象初始化变量。第二个测试用例无法再次初始化变量。您在第二个测试用例中创建的模拟对象上设置了期望值,但实际上该变量仍然是指第一个模拟对象。

由于您不想修改类,因此应使用@BeforeClass设置模拟引用一次,并将“mockCollaborator”设置为全局变量,以便在多个测试用例中使用该引用。