26

检查以下代码段:

    assertThat(
        Arrays.asList("1x", "2x", "3x", "4z"),
        not(hasItem(not(endsWith("x"))))
    );

这断言该列表没有不以“x”结尾的元素。当然,这是双重否定的说法,即列表的所有元素都以“x”结尾。

另请注意,该片段会抛出:

java.lang.AssertionError: 
Expected: not a collection containing not a string ending with "x"
     got: <[1x, 2x, 3x, 4z]>

这会列出整个列表,而不仅仅是不以“x”结尾的元素。

那么有没有一种惯用的方式:

  • 断言每个元素都以“x”结尾(没有双重否定)
  • 在断言错误时,仅列出那些不以“x”结尾的元素
4

3 回答 3

23

您正在寻找everyItem()

assertThat(
    Arrays.asList("1x", "2x", "3x", "4z"),
    everyItem(endsWith("x"))
);

这会产生一个很好的失败消息:

Expected: every item is a string ending with "x"
     but: an item was "4z"
于 2011-05-13T20:05:07.070 回答
17

David Harkness 给出的匹配器为预期的部分产生了一个很好的消息。但是,实际部分的消息也取决于assertThat您使用的方法:

来自JUnit ( org.junit.Assert.assertThat) 的那个会产生您提供的输出。

  • 使用not(hasItem(not(...)))匹配器:

    java.lang.AssertionError: 
    Expected: not a collection containing not a string ending with "x"
         got: <[1x, 2x, 3x, 4z]>
    
  • 使用everyItem(...)匹配器:

    java.lang.AssertionError: 
    Expected: every item is a string ending with "x"
         got: <[1x, 2x, 3x, 4z]>
    

Hamcrest ( ) 中的一个org.hamcrest.MatcherAssert.assertThat产生 David 给出的输出:

  • 使用not(hasItem(not(...)))匹配器:

    java.lang.AssertionError: 
    Expected: not a collection containing not a string ending with "x"
         but: was <[1x, 2x, 3x, 4z]>
    
  • 使用everyItem(...)匹配器:

    java.lang.AssertionError: 
    Expected: every item is a string ending with "x"
         but: an item was "4z"
    

我自己对 Hamcrest 断言的实验表明,“但是”部分经常令人困惑,这取决于多个匹配器的组合方式以及哪个匹配器首先失败,因此我仍然坚持使用 JUnit 断言,在那里我非常清楚我会在“得到”部分看到。

于 2011-05-13T20:19:16.153 回答
3

我知道这个问题已经很老了,但是今天,使用 Java 8,我宁愿用 lambdas 编写它,例如

Stream.of("1x", "2x", "3x", "4z").allMatch(e->e.endsWith("x"));

这就是为什么。

于 2015-04-28T22:24:10.547 回答