Package org.fest.assertions.error
Class ElementsShouldHave
java.lang.Object
org.fest.assertions.error.BasicErrorMessageFactory
org.fest.assertions.error.ElementsShouldHave
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies that each element of a group satisfies a
Condition
A group of elements can be a collection, an array.- Author:
- Nicolas François, Mikhail Mazursky, Joel Costigliola
-
Field Summary
Fields inherited from class org.fest.assertions.error.BasicErrorMessageFactory
arguments, format -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactoryelementsShouldHave(Object actual, Object notSatisfies, Condition<?> condition) Creates a newElementsShouldHave.Methods inherited from class org.fest.assertions.error.BasicErrorMessageFactory
create, equals, hashCode, toString
-
Method Details
-
elementsShouldHave
public static ErrorMessageFactory elementsShouldHave(Object actual, Object notSatisfies, Condition<?> condition) Creates a newElementsShouldHave.- Parameters:
actual- the actual value in the failed assertion.notSatisfies- elements that not satisfies the conditioncondition- theCondition.- Returns:
- the created
ErrorMessageFactory.
-