これは、シリーズのパート 3です...
私は(まだ)PowerMockito(is )を使用してbar(Alpha, Baz)
呼び出されたかどうかを確認しようとしています-実際に後で呼び出すことなく、以下のMCVEクラスを指定します。は何も返さないが、他の 2 つはを返すことに注意してください。bar(Xray, Baz)
bar(Xray, Baz)
private
Foo
bar(Alpha, Baz)
String
public class Foo {
private String bar(Xray xray, Baz baz) { return "Xray"; }
private String bar(Zulu zulu, Baz baz) { return "Zulu"; }
public void bar(Alpha alpha, Baz baz) { // this one returns nothing
if(alpha.get() instanceof Xray) {
System.out.println(bar((Xray) alpha.get(), baz));
return;
} else if(alpha.get() instanceof Zulu) {
System.out.println(bar((Zulu)alpha.get(), baz));
return;
} else {
return;
}
}
}
ユーザー kswaughsは、すべてのメソッドが同じ戻り値の型を持つ場合に、プライベート オーバーロード メソッドの問題を解決しました。そして、他の場所when()
では、メソッドをオブジェクトで使用することが提案されましたMethod
...しかし、bar(Alpha, Baz)
他のメソッドとは異なる戻り値の型を使用するように定義したので、すべてが再び崩壊します:
@RunWith(PowerMockRunner.class)
public class FooTest {
@Test
public void testBar_callsBarWithXray() throws Exception {
Baz baz = new Baz(); //POJOs
Alpha alpha = new Alpha();
alpha.set(new Xray());
Foo foo = new Foo();
Foo stub = PowerMockito.spy(foo);
Method m = Whitebox.getMethod(Foo.class, "bar", Xray.class, Baz.class);
PowerMockito.doReturn("ok").when(stub, m);
stub.bar(alpha, baz); // fails here - even though that then calls stub.bar(Xray, Baz);
// Testing if bar(Xray, Baz) was called by bar(Alpha, Baz)
PowerMockito.verifyPrivate(stub, times(5)).invoke("bar", any(Xray.class), any(Baz.class));
}
}
すべての美しさの例外:
org.mockito.exceptions.base.MockitoException:
'bar' is a *void method* and it *cannot* be stubbed with a *return value*!
Voids are usually stubbed with Throwables:
doThrow(exception).when(mock).someVoidMethod();
***
If you're unsure why you're getting above error read on.
Due to the nature of the syntax above problem might occur because:
1. The method you are trying to stub is *overloaded*. Make sure you are calling the right overloaded version.
2. Somewhere in your test you are stubbing *final methods*. Sorry, Mockito does not verify/stub final methods.
3. A spy is stubbed using when(spy.foo()).then() syntax. It is safer to stub spies -
- with doReturn|Throw() family of methods. More in javadocs for Mockito.spy() method.
at FooTest.testBar_callsBarWithXray(FooTest.java:31)
使っ.withArguments(any(Xray.class), any(Baz.class))
ても変わらないようです。
スポットオンですが、残念ながら例外は、私が持っているセットアップでポイント1を実現する方法を教えてくれません. 何か案は?