gpt4 book ai didi

java - 如何在java中模拟单个方法

转载 作者:IT老高 更新时间:2023-10-28 21:05:05 25 4
gpt4 key购买 nike

是否可以模拟 Java 类的单个方法?

例如:

class A {
long method1();
String method2();
int method3();
}


// in some other class
class B {
void someMethod(A a) {
// how would I mock A.method1(...) such that a.method1() returns a value of my
// choosing;
// whilst leaving a.method2() and a.method3() untouched.
}
}

最佳答案

使用 Mockito 的 spy 机制:

A a = new A();
A aSpy = Mockito.spy(a);
Mockito.when(aSpy.method1()).thenReturn(5l);

对于任何未 stub 的方法,使用 spy 调用包装对象的默认行为。

Mockito.spy()/@Spy

关于java - 如何在java中模拟单个方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10895605/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com