Mockito spy - when calling inner class method not spying method in spy object(Mockito spy - 当调用内部类方法而不是间谍对象中的间谍方法时)
问题描述
我有如下内部类的类:
public class ClassWithInnerObject {
private final InnerObject innerObject;
public ClassWithInnerObject() {
innerObject = new InnerObject();
}
public void callInnerObjectMethod() {
innerObject.outerFunc();
}
public void outerFunc() {
innerFunc();
}
public void innerFunc() {
Log.d("XXX", "innerFunc: called");
}
public class InnerObject {
public void outerFunc() {
innerFunc();
}
}
}
mockito 测试如下所示:build.gradle:
And the mockito test is looking as following: build.gradle:
androidTestCompile 'junit:junit:4.12'
androidTestCompile 'org.mockito:mockito-core:1.10.19'
androidTestCompile 'com.crittercism.dexmaker:dexmaker:1.4'
androidTestCompile 'com.crittercism.dexmaker:dexmaker-mockito:1.4'
androidTestCompile 'com.crittercism.dexmaker:dexmaker-dx:1.4'
测试:
@RunWith(AndroidJUnit4.class) public class SpyVerifyTest {
@Test public void myInnerTestWorking() {
ClassWithInnerObject p = new ClassWithInnerObject();
ClassWithInnerObject spy = Mockito.spy(p);
spy.outerFunc();
verify(spy, times(1)).innerFunc();
}
@Test public void myInnerTestNotWorking() {
ClassWithInnerObject p = new ClassWithInnerObject();
ClassWithInnerObject spy = Mockito.spy(p);
spy.callInnerObjectMethod();
verify(spy, times(1)).innerFunc();
}
}
第一个测试按预期工作.第二个 innerFunc
从未被检测为已调用",尽管在日志中我看到它是.出了什么问题?:)
The first test is working as expected.
The second one the innerFunc
is never detected as "invoked", although in the log I see it is.What is wrong? :)
谢谢!
推荐答案
怎么了?
好吧,这里的问题很微妙,当你调用 Mockito.spy(p)
时,mockito
在你的 ClassWithInnerObject
允许监视实例上的所有方法调用.多亏了这一点,您可以检查给定方法被调用了多少次但仅在装饰器上而不是在您的实例上.在这里,当您使用内部类时,它会在您的 ClassWithInnerObject
实例上调用 innerFunc()
而不是在装饰器上调用 Mockito
innerFunc()
没有被调用.
Well, the problem here is quite subtle, when you call Mockito.spy(p)
, mockito
creates behind the scene some kind of decorator over your instance of ClassWithInnerObject
allowing to monitor all methods calls on your instance. Thanks to that, you can check how many times a given method has been called but on the decorator only not on your instance. And here, when you use an inner class, it calls innerFunc()
on your instance of ClassWithInnerObject
not on the decorator so for Mockito
innerFunc()
has not been called.
这篇关于Mockito spy - 当调用内部类方法而不是间谍对象中的间谍方法时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Mockito spy - 当调用内部类方法而不是间谍对象中的间谍方法时
基础教程推荐
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 降序排序:Java Map 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01