gpt4 book ai didi

junit - 如何使用Hamcrest检查 map 项

转载 作者:行者123 更新时间:2023-12-03 10:54:32 27 4
gpt4 key购买 nike

我最近一直在使用Hamcrest库编写一些测试,并且相当成功,但是现在我需要做一些更复杂的事情,并开始看到很多困难。我需要检查并验证Map中各项的属性。我的生产代码如下所示:

    Map<String, List<MyItem>> map = new HashMap<String, List<MyItem>>();
map.put("one", Arrays.asList(new MyItem("One")));
map.put("two", Arrays.asList(new MyItem("Two")));
map.put("three", Arrays.asList(new MyItem("Three")));

我想编写一些类似于以下的测试代码,但无法编译。看起来Hamcrest的hasEntry是类型参数化的,而hasItem和hasProperty只需要Object。
    assertThat(map, Matchers.<String, List<MyItem>>hasEntry("one",  hasItem(hasProperty("name", is("One")))));

我的IDE(Eclipse)给出此错误消息:类型为 <String, List<HamcrestTest.MyItem>>hasEntry(String, List<HamcrestTest.MyItem>)的参数化方法 Matchers不适用于参数 (String, Matcher<Iterable<? super Object>>)。一方面,我认为Eclipse对我想使用的 hasEntry方法感到困惑,它应该是 hasEntry(org.hamcrest.Matcher<? super K> keyMatcher, org.hamcrest.Matcher<? super V> valueMatcher)而不是 hasEntry(K key, V value)

我应该放弃并从 map 上获取商品并手动检查每个属性吗?有没有更清洁的方法?

最佳答案

Youu可以只使用containscontainsInAnyOrder。没错,您必须以这种方式列出List中的所有项目,但它比hasItem更干净:

@SuppressWarnings("unchecked")
@Test
public void mapTest() {
Map<String, List<MyItem>> map = new HashMap<String, List<MyItem>>();
map.put("one", asList(new MyItem("1"), new MyItem("one")));

assertThat(map, hasEntry(is("one"),
containsInAnyOrder(hasProperty("name", is("one")),
hasProperty("name", is("1")))));
}

关于junit - 如何使用Hamcrest检查 map 项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20197783/

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