Package org.assertj.core.error
Class ShouldBeIn
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldBeIn
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a value is in a group of values (e.g. an array or
collection) failed.
- Author:
- Yvonne Wang, Joel Costigliola
-
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactoryshouldBeIn(Object actual, Object values) Creates a new.ShouldBeInstatic ErrorMessageFactoryshouldBeIn(Object actual, Object values, ComparisonStrategy comparisonStrategy) Creates a new.ShouldBeInMethods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Method Details
-
shouldBeIn
public static ErrorMessageFactory shouldBeIn(Object actual, Object values, ComparisonStrategy comparisonStrategy) Creates a new.ShouldBeIn- Parameters:
actual- the actual value in the failed assertion.values- the group of values whereactualis expected to be in.comparisonStrategy- theComparisonStrategyused to evaluate assertion.- Returns:
- the created
ErrorMessageFactory.
-
shouldBeIn
Creates a new.ShouldBeIn- Parameters:
actual- the actual value in the failed assertion.values- the group of values whereactualis expected to be in.- Returns:
- the created
ErrorMessageFactory.
-