我在这里错过了什么吗?
@Test
public void testAnything(){
Random random = new Random();
assertThat(random.nextInt(), is(equalTo(anything())));
}
这不编译。Eclipse 抱怨“MatcherAssert 类型中的方法 assertThat(T, Matcher) 不适用于参数 (int, Matcher>)”
使用任何东西()我错过了什么吗?我过去使用过其他 Hamcrest 方法……那么这有什么不同呢?