when( fooDao.getBar( any(Bazoo.class) )).thenReturn(myFoo);
或(避免
nulls):
when( fooDao.getBar( (Bazoo)notNull() )).thenReturn(myFoo);
对于Mockito 2.1.0及更高版本:
import static org.mockito.ArgumentMatchers.*;
对于旧版本:
import static org.mockito.Matchers.*;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)