Package org.assertj.core.error
Class ShouldContainOnly
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldContainOnly
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldContainOnly extends BasicErrorMessageFactory
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 aString.- Author:
- Alex Ruiz, Yvonne Wang, Joel Costigliola
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classShouldContainOnly.ErrorType
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description privateShouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy)privateShouldContainOnly(Object actual, Object expected, Iterable<?> notFoundOrNotExpected, ShouldContainOnly.ErrorType errorType, ComparisonStrategy comparisonStrategy)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactoryshouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected)Creates a new.ShouldContainOnlystatic ErrorMessageFactoryshouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy)Creates a new.ShouldContainOnly-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Constructor Detail
-
ShouldContainOnly
private ShouldContainOnly(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy)
-
ShouldContainOnly
private ShouldContainOnly(Object actual, Object expected, Iterable<?> notFoundOrNotExpected, ShouldContainOnly.ErrorType errorType, ComparisonStrategy comparisonStrategy)
-
-
Method Detail
-
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)
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.
-
-