Package org.hamcrest.core
Class IsCollectionContaining<T>
java.lang.Object
org.hamcrest.BaseMatcher<Iterable<? super T>>
org.hamcrest.TypeSafeDiagnosingMatcher<Iterable<? super T>>
org.hamcrest.core.IsCollectionContaining<T>
- Type Parameters:
T
- the collection element type
- All Implemented Interfaces:
Matcher<Iterable<? super T>>
,SelfDescribing
@Deprecated
public class IsCollectionContaining<T>
extends TypeSafeDiagnosingMatcher<Iterable<? super T>>
Deprecated.
-
Constructor Summary
ConstructorDescriptionIsCollectionContaining
(Matcher<? super T> elementMatcher) Deprecated.Constructor, best called from one of the static factory methods. -
Method Summary
Modifier and TypeMethodDescriptionvoid
describeTo
(Description description) Deprecated.Generates a description of the object.Deprecated.As of version 2.1, useIsIterableContaining.hasItem(Matcher)
.hasItem
(T item) Deprecated.As of version 2.1, useIsIterableContaining.hasItem(Object)
.Deprecated.As of version 2.1, useIsIterableContaining.hasItems(Matcher[])
}.hasItems
(T... items) Deprecated.As of version 2.1, useIsIterableContaining.hasItems(Object[])
}.protected boolean
matchesSafely
(Iterable<? super T> collection, Description mismatchDescription) Deprecated.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
-
Constructor Details
-
IsCollectionContaining
Deprecated.Constructor, best called from one of the static factory methods.- Parameters:
elementMatcher
- matches the expected element- See Also:
-
-
Method Details
-
matchesSafely
Deprecated.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<? super T>>
- Parameters:
collection
- the item.mismatchDescription
- the mismatch description.- Returns:
- boolean true/false depending if item matches matcher.
-
describeTo
Deprecated.Description copied from interface:SelfDescribing
Generates a description of the object. The description may be part of 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.
-
hasItem
Deprecated.As of version 2.1, useIsIterableContaining.hasItem(Matcher)
.Creates a matcher forIterable
s that only matches when a single pass over the examinedIterable
yields at least one item that is matched by the specifieditemMatcher
. Whilst matching, the traversal of the examinedIterable
will stop as soon as a matching item is found. For example:assertThat(Arrays.asList("foo", "bar"), hasItem(startsWith("ba")))
- Type Parameters:
T
- the matcher type.- Parameters:
itemMatcher
- the matcher to apply to items provided by the examinedIterable
- Returns:
- The matcher.
-
hasItem
Deprecated.As of version 2.1, useIsIterableContaining.hasItem(Object)
.Creates a matcher forIterable
s that only matches when a single pass over the examinedIterable
yields at least one item that is equal to the specifieditem
. Whilst matching, the traversal of the examinedIterable
will stop as soon as a matching item is found. For example:assertThat(Arrays.asList("foo", "bar"), hasItem("bar"))
- Type Parameters:
T
- the matcher type.- Parameters:
item
- the item to compare against the items provided by the examinedIterable
- Returns:
- The matcher.
-
hasItems
Deprecated.As of version 2.1, useIsIterableContaining.hasItems(Matcher[])
}.Creates a matcher forIterable
s that matches when consecutive passes over the examinedIterable
yield at least one item that is matched by the corresponding matcher from the specifieditemMatchers
. Whilst matching, each traversal of the examinedIterable
will stop as soon as a matching item is found. For example:assertThat(Arrays.asList("foo", "bar", "baz"), hasItems(endsWith("z"), endsWith("o")))
- Type Parameters:
T
- the matcher type.- Parameters:
itemMatchers
- the matchers to apply to items provided by the examinedIterable
- Returns:
- The matcher.
-
hasItems
Deprecated.As of version 2.1, useIsIterableContaining.hasItems(Object[])
}.Creates a matcher forIterable
s that matches when consecutive passes over the examinedIterable
yield at least one item that is equal to the corresponding item from the specifieditems
. Whilst matching, each traversal of the examinedIterable
will stop as soon as a matching item is found. For example:assertThat(Arrays.asList("foo", "bar", "baz"), hasItems("baz", "foo"))
- Type Parameters:
T
- the matcher type.- Parameters:
items
- the items to compare against the items provided by the examinedIterable
- Returns:
- The matcher.
-
IsIterableContaining
.