使用 hamcrest 匹配 Map 包含不同类型的条目
2022-09-04 03:51:08
假设我有一张地图:
Map<String,Object> map1 = new HashMap<String,Object>();
map1.put("foo1","foo1");
map1.put("foo2", Arrays.asList("foo2","bar2"));
现在我想使用Hamcrest匹配器来验证Map的值。如果这是一个Map< String,String >我会做类似这样的事情:
assertThat(map1, hasEntry("foo1", "foo1"));
但是,在尝试将其与Map一起使用时,我遇到了困难,其中Map中的条目可能是字符串或值列表。这适用于第一个条目:
assertThat(map1, hasEntry("foo1", (Object)"foo1"));
对于第二个条目,我不知道如何设置匹配器。
编辑:
我也尝试过,但它会产生编译器警告。
assertThat(
map1,
hasEntry(
"foo2",
contains(hasProperty("name", is("foo2")),
hasProperty("name", is("bar2")))));
“Assert 类型中的方法 assertThat(T, Matcher) 不适用于参数(Map、Matcher>>>)”
(以上是这里的解决方案:Hamcrest比较系列 )