类 Every<T>

    • 构造器详细资料

    • 方法详细资料

      • describeTo

        public void describeTo​(Description description)
        从接口复制的说明: SelfDescribing
        Generates a description of the object. The description may be part of a a description of a larger object of which this is just a component, so it should be worded appropriately.
        参数:
        description - The description to be built or appended to.
      • everyItem

        public static <U> Matcher<Iterable<U>> everyItem​(Matcher<U> itemMatcher)
        Creates a matcher for Iterables that only matches when a single pass over the examined Iterable yields items that are all matched by the specified itemMatcher.

        For example:

        assertThat(Arrays.asList("bar", "baz"), everyItem(startsWith("ba")))
        参数:
        itemMatcher - the matcher to apply to every item provided by the examined Iterable