我最近一直在使用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可以只使用contains
或containsInAnyOrder
。没错,您必须以这种方式列出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")))));
}