Mockito—参数匹配~任意
生活随笔
收集整理的這篇文章主要介紹了
Mockito—参数匹配~任意
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
import org.mockito.Mockito;@Test
public void withUnspecifiedArguments() {List list = Mockito.mock(List.class);//匹配任意參數Mockito.when(list.get(org.mockito.Matchers.anyInt())).thenReturn(1);//測試Assert.assertEquals(1, list.get(1));Assert.assertEquals(1, list.get(999));
}
一旦一個參數是任意匹配,其他參數都必須是任意匹配
Mockito.when(client.request(org.mockito.Matchers.anyString(), org.mockito.Matchers.anyString(), org.mockito.Matchers.anyString())).thenReturn(result);總結
以上是生活随笔為你收集整理的Mockito—参数匹配~任意的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: CompletableFuture详解~
- 下一篇: Python PyInstaller 安