Mockito:了解doReturn() 和when() 之間的差異
Mockito 的doReturn() 之間遇到混淆是可以理解的... when() 和when()...thenReturn() 方法,因為它們可能看起來在做同樣的事情。雖然兩者都可以模擬方法呼叫並傳回預定義值,但在使用間諜物件(用@Spy註解)而不是模擬(用@Mock註解)時,有一個微妙的差異變得相關。
關鍵區別:方法呼叫行為
關鍵區別在於這些方法在與間諜互動時的行為方式物件:
說明差異的範例:
考慮以下程式碼:
public class MyClass { public String methodToBeTested() { return anotherMethodInClass(); } public String anotherMethodInClass() { throw new NullPointerException(); } }
使用sied進行測試object:
@Spy private MyClass myClass; // ... // This approach will work without throwing an exception doReturn("test").when(myClass).anotherMethodInClass(); // This approach will throw a NullPointerException when(myClass.anotherMethodInClass()).thenReturn("test");
對於監視對象,when()...thenReturn() 嘗試調用 anotherMethodInClass() ,這將拋出 NullPointerException。相比之下,doReturn()...when()避免了呼叫該方法,直接返回“test”,抑制了異常。
結論
它們之間的區別當使用監視對象時,兩種方法變得顯而易見。對於監視對象, doReturn()...when() 透過繞過實際方法呼叫並直接傳回預定義值來提供更好的控制。相反,when()...thenReturn() 呼叫真正的方法,這可能會導致異常或其他意外行為。因此,選擇適當的方法取決於所需的行為以及您使用的是模擬物件還是間諜物件。
以上是Mockito:「doReturn()」與「when()」:我什麼時候該使用哪一個?的詳細內容。更多資訊請關注PHP中文網其他相關文章!