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.-
Nested Class Summary
Nested Classes -
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateShouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy, GroupTypeDescription groupTypeDescription) privateShouldContainOnly(Object actual, Object expected, Iterable<?> notFoundOrNotExpected, ShouldContainOnly.ErrorType errorType, ComparisonStrategy comparisonStrategy, GroupTypeDescription groupTypeDescription) -
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.ShouldContainOnlyprivate static ErrorMessageFactoryshouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy, GroupTypeDescription groupTypeDescription) Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Constructor Details
-
ShouldContainOnly
private ShouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy, GroupTypeDescription groupTypeDescription) -
ShouldContainOnly
private ShouldContainOnly(Object actual, Object expected, Iterable<?> notFoundOrNotExpected, ShouldContainOnly.ErrorType errorType, ComparisonStrategy comparisonStrategy, GroupTypeDescription groupTypeDescription)
-
-
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
private static ErrorMessageFactory shouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy, 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.
-