다음과 같은 수업이 있습니다.
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()
returns a dummy string "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
.