使用参数模拟构造函数
我有一个班级如下:
public class A {
public A(String test) {
bla bla bla
}
public String check() {
bla bla bla
}
}
构造函数中的逻辑是我试图嘲笑的东西。我想要任何调用,如:返回一个虚拟字符串。A(String test)
check()
new A($$$any string$$$).check()
"test"
我试过了:
A a = mock(A.class);
when(a.check()).thenReturn("test");
String test = a.check(); // to this point, everything works. test shows as "tests"
whenNew(A.class).withArguments(Matchers.anyString()).thenReturn(rk);
// also tried:
//whenNew(A.class).withParameterTypes(String.class).withArguments(Matchers.anyString()).thenReturn(rk);
new A("random string").check(); // this doesn't work
但它似乎不起作用。 仍在通过构造函数逻辑,而不是获取 的模拟对象。new A($$$any string$$$).check()
A