gpt4 book ai didi

java - 如何为 byte[] 编写 mockito 匹配器?

转载 作者:搜寻专家 更新时间:2023-11-01 03:37:21 25 4
gpt4 key购买 nike

我需要一个用于 byte[] 的复杂的 Matcher。以下代码无法编译,因为 argThat 返回 Byte[]。有没有办法为原始类型数组编写专用的 Matcher

    verify(communicator).post(Matchers.argThat(new ArgumentMatcher<Byte[]>() {

@Override
public boolean matches(Object argument) {
// do complex investigation of byte array
return false;
}
}));

最佳答案

你真的可以使用new ArgumentMatcher<byte[]> { ... }这里:

verify(communicator).post(Matchers.argThat(new ArgumentMatcher<byte[]>() {
@Override
public boolean matches(Object argument) {
// do complex investigation of byte array
return false;
}
}));

您所指的答案是说 byte[]不是 T[] 的有效替代品(因为 T[] 假设 Object[]byte[] 不是),但在你的情况下没有 T[]涉及,和byte[] , 是 Object 的子类, 是简单 T 的有效替代品.

关于java - 如何为 byte[] 编写 mockito 匹配器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26993231/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com