Mockito.any() 通过泛型接口

时间:2023-05-03
本文介绍了Mockito.any() 通过泛型接口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

是否可以使用泛型传递接口的类型?

is it possible to pass the type of an interface with generics?

界面:

public interface AsyncCallback<T>

在我的测试方法中:

Mockito.any(AsyncCallback.class)

<ResponseX> 放在 .class 后面或为 .class 不起作用.

Putting <ResponseX> behind or for .class didnt work.

推荐答案

有一种类型安全的方法:使用 ArgumentMatchers.any() 并用类型限定它:

There is a type-safe way: use ArgumentMatchers.any() and qualify it with the type:

ArgumentMatchers.<AsyncCallback<ResponseX>>any()

这篇关于Mockito.any() 通过泛型接口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:如何验证没有使用 Mockito 调用特定方法? 下一篇:PowerMock,模拟一个静态方法,然后在所有其他静态上调用真实方法

相关文章