如何使mocked方法返回相同的mock

时间:2016-01-04 12:27:25

标签: java mocking mockito

我正在尝试模拟包含clone方法的类。我希望克隆返回相同的模拟:

when(regressor.cloneWithSharedResources()).thenReturn(regressor);

但是,这会给我一个不同的对象。有没有方便的方法呢?

2 个答案:

答案 0 :(得分:1)

也许我误解了你的问题,因为我无法重现这种行为。

我创建了一个简单的测试来重现它:

public class FooTest {
   class Regressor {
      public Regressor cloneWithSharedResources() {
         return new Regressor();
      }
   }

   class ClassToTest {
      public Regressor foo(Regressor regressor) {
         // ...
         return regressor.cloneWithSharedResources();
      }
   }

   @Test
   public void testFoo() throws Exception {
      Regressor regressor = Mockito.mock(Regressor.class);
      Mockito.when(regressor.cloneWithSharedResources()).thenReturn(regressor);

      ClassToTest classToTest = new ClassToTest();
      Regressor clonedRegressor = classToTest.foo(regressor);

      Assert.assertSame(regressor, clonedRegressor);
   }
}

此测试成功通过,因此regressorclonedRegressor实际上是同一个对象。

拜托,你能告诉我,如果我错了,或者我误会了什么。希望它有所帮助。

注意:我已使用Mockito 1.9.4

进行了测试

答案 1 :(得分:1)

我相信它必须给出相同的对象。你可以发布你的代码吗?我试过下面的代码,它给了我相同的对象。

t = mock(Tester.class);
when(t.clone()).thenReturn(t);