5

我正在使用 EasyMock 创建模拟,它是测试类中的私有参数之一(没有设置器)。我尝试使用反射 - 但它无法正常工作。

public class TestedClassTest{
    @Test
    public void test(){
      TestedClass instance = new TestedClass();
      MockedClass mocked = EasyMock.createMock(MockedClass.class);
      Data data = new Data();

      //Void setter
      DataType dataType = (myDataType.DataType) EasyMock.anyObject();
      mocked.setDataType(dataType);
      EasyMock.expectLastCall();

      //expect
      EasyMock.expect(mocked.getData()).andReturn(data);
      EasyMock.replay(mocked);

      Field field = instance.getClass().getDeclaredField("mockedClass")
      field.setAccessible(true);
      field.set(instance, mocked);

      //run tested method
      instance.someAction();

      EasyMock.verify(mocked);
   }
}

我得到失败的信息:

Unexpected method call MockedClass.setDataType(myData.MyData@104306d75):
MockedClass.getData(): expected: 1, actual: 0
junit.framework.AssertionFailedError: 
Unexpected method call MockedClass.setDataType(myData.MyData@132006d75):
MockedClass.getData(): expected: 1, actual: 0

我确定在测试“instance.someAction()”期间在“MockedClass”对象上触发此方法

如何解决这个问题?

已编辑 - 答案:在更正双倍之后,replay.mocked()我发现(很简单!)应该使用声明另一个 void 方法 EasyMock.expectLastCall()

4

1 回答 1

4

您的反射代码看起来不错。

自从我使用 EasyMock 以来已经有很长时间了,但replay在测试中不应该只调用一次模拟吗?您正在调用它两次。尝试摆脱第一个replay电话。

在这种情况下,将包含模拟的字段公开是否有意义?一般来说,协作者应该通过构造函数或设置器来设置,完全不需要反射。

编辑——根据你的更新——错误表明setDataType在模拟上被调用,但模拟并不期望它被调用。也许你的类调用了它两次,也许它被无序调用,或者用你没想到的参数调用它(尽管我希望在这种情况下错误会有所不同)。

于 2012-04-04T12:57:38.303 回答