Hamcrest 对象匹配器...参数

发布于 2024-12-18 01:14:58 字数 773 浏览 2 评论 0原文

我得到了类的方法

interface Class1{
    void method1(SomeObject... parameters);
}

我有一个自定义的 Hamcrest 匹配器

public class SomeObjectMatcher extends BaseMatcher<SomeObject>{...}

如何编写与传递给 method1 的对象匹配的期望

SomeObject someObject = new SomeObject(...);
...

mockery.checking(new Expectations(){{
    oneOf(class1).method1(with(new SomeObjectMatcher(someObject1)));
}}

实际调用是

class1.method1(someObject);

传递的对象和期望的对象是相同的,但是 SomeObjectMatcher 失败,因为实际传递的参数不是 someObject1,而是它是 SomeObject[]{someObject1} (只有一个对象的数组 - someObject1)? 有没有办法在链中添加新的匹配器,例如

oneOf(class1).method1(with(arrayHas(new SomeObjectMatcher(someObject1))));

I got method of class

interface Class1{
    void method1(SomeObject... parameters);
}

I have a custom Hamcrest matcher

public class SomeObjectMatcher extends BaseMatcher<SomeObject>{...}

How to write expectation matching that object passed to the method1

SomeObject someObject = new SomeObject(...);
...

mockery.checking(new Expectations(){{
    oneOf(class1).method1(with(new SomeObjectMatcher(someObject1)));
}}

The actual call is

class1.method1(someObject);

The passed object and the expected one are same, but SomeObjectMatcher fails, because the actual passed parameter is not someObject1, but it is SomeObject[]{someObject1} (array with only one object - someObject1)?
Is there a way to add a new matcher in the chain, something like

oneOf(class1).method1(with(arrayHas(new SomeObjectMatcher(someObject1))));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萤火眠眠 2024-12-25 01:14:59

尝试用 hasItemInArray 替换 arrayHas。要匹配数组中的多个项目,您可以使用 arrayContaining 和 arrayContainingInAnyOrder。

Try replacing arrayHas with hasItemInArray. To match multiple items in an array you can use arrayContaining and arrayContainingInAnyOrder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文