org.axonframework.test.matchers
Class ListWithAllOfMatcher
java.lang.Object
org.hamcrest.BaseMatcher<List<?>>
org.axonframework.test.matchers.ListMatcher
org.axonframework.test.matchers.ListWithAllOfMatcher
- All Implemented Interfaces:
- org.hamcrest.Matcher<List<?>>, org.hamcrest.SelfDescribing
public class ListWithAllOfMatcher
- extends ListMatcher
A matcher that will match if all the given matchers
match against at least one item in a given List.
- Since:
- 1.1
- Author:
- Allard Buijze
Constructor Summary |
ListWithAllOfMatcher(org.hamcrest.Matcher... matchers)
Construct a matcher that will return true if all the given matchers match against at least one
item in any given List. |
Method Summary |
protected void |
describeCollectionType(org.hamcrest.Description description)
Describes the type of collection expected. |
boolean |
matchesList(List<?> items)
Evaluates the matcher for argument item . |
Methods inherited from class org.hamcrest.BaseMatcher |
_dont_implement_Matcher___instead_extend_BaseMatcher_, describeMismatch, toString |
ListWithAllOfMatcher
public ListWithAllOfMatcher(org.hamcrest.Matcher... matchers)
- Construct a matcher that will return true if all the given
matchers
match against at least one
item in any given List.
- Parameters:
matchers
- The matchers that must match against at least one item in the list.
matchesList
public boolean matchesList(List<?> items)
- Description copied from class:
ListMatcher
- Evaluates the matcher for argument
item
. The item has been verified to be a list, but the exact
type of contents of a list cannot be verified, due to Erasure of Generic Types.
- Specified by:
matchesList
in class ListMatcher
- Parameters:
items
- the object against which the matcher is evaluated.
- Returns:
true
if item
matches, otherwise false
.- See Also:
BaseMatcher
describeCollectionType
protected void describeCollectionType(org.hamcrest.Description description)
- Description copied from class:
ListMatcher
- Describes the type of collection expected. To be used in the sentence: "list with ... of: ". E.g. "all" or "sequence".
- Specified by:
describeCollectionType
in class ListMatcher
- Parameters:
description
- the description to append the collection type to
Copyright © 2010-2016. All Rights Reserved.