Package org.hamcrest.core
Class Every<T>
java.lang.Object
org.hamcrest.BaseMatcher<Iterable<? extends T>>
- All Implemented Interfaces:
Matcher<Iterable<? extends T>>
,SelfDescribing
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
describeTo
(Description description) Generates a description of the object.boolean
matchesSafely
(Iterable<? extends T> collection, Description mismatchDescription) Subclasses should implement this.Methods inherited from class org.hamcrest.TypeSafeDiagnosingMatcher
describeMismatch, matches
Methods inherited from class org.hamcrest.BaseMatcher
_dont_implement_Matcher___instead_extend_BaseMatcher_, isNotNull, toString
-
Field Details
-
matcher
-
-
Constructor Details
-
Every
-
-
Method Details
-
matchesSafely
Description copied from class:TypeSafeDiagnosingMatcher
Subclasses should implement this. The item will already have been checked for the specific type and will never be null.- Specified by:
matchesSafely
in classTypeSafeDiagnosingMatcher<Iterable<? extends T>>
-
describeTo
Description copied from interface: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.- Parameters:
description
- The description to be built or appended to.
-
everyItem
Creates a matcher forIterable
s that only matches when a single pass over the examinedIterable
yields items that are all matched by the specifieditemMatcher
. For example:assertThat(Arrays.asList("bar", "baz"), everyItem(startsWith("ba")))
- Parameters:
itemMatcher
- the matcher to apply to every item provided by the examinedIterable
-