ฉันมีคลาสดังนี้:
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
.