Package org.assertj.core.error
Class ShouldContainOnly
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldContainOnly
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies a group of elements contains only a given set of
values and
nothing else failed. A group of elements can be a collection, an array or a
String.- Author:
- Alex Ruiz, Yvonne Wang, Joel Costigliola
-
Nested Class Summary
Nested Classes -
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactoryshouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected) Creates a new.ShouldContainOnlystatic ErrorMessageFactoryshouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, GroupTypeDescription groupTypeDescription) static ErrorMessageFactoryshouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy) Creates a new.ShouldContainOnlyMethods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Method Details
-
shouldContainOnly
public static ErrorMessageFactory shouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy) Creates a new.ShouldContainOnly- Parameters:
actual- the actual value in the failed assertion.expected- values expected to be contained inactual.notFound- values inexpectednot found inactual.notExpected- values inactualthat were not inexpected.comparisonStrategy- theComparisonStrategyused to evaluate assertion.- Returns:
- the created
ErrorMessageFactory.
-
shouldContainOnly
public static ErrorMessageFactory shouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, GroupTypeDescription groupTypeDescription) -
shouldContainOnly
public static ErrorMessageFactory shouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected) Creates a new.ShouldContainOnly- Parameters:
actual- the actual value in the failed assertion.expected- values expected to be contained inactual.notFound- values inexpectednot found inactual.notExpected- values inactualthat were not inexpected.- Returns:
- the created
ErrorMessageFactory.
-