Package org.assertj.core.error
Class ShouldContainExactlyInAnyOrder
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldContainExactlyInAnyOrder
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldContainExactlyInAnyOrder extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies a group of elements contains exactly a given set of values and nothing else failed. A group of elements can be a collection, an array or aString.- Author:
- Lovro Pandzic
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classShouldContainExactlyInAnyOrder.ErrorType
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description privateShouldContainExactlyInAnyOrder(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy)privateShouldContainExactlyInAnyOrder(Object actual, Object expected, Iterable<?> notFoundOrNotExpected, ShouldContainExactlyInAnyOrder.ErrorType errorType, ComparisonStrategy comparisonStrategy)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactoryshouldContainExactlyInAnyOrder(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy)Creates a new.ShouldContainExactlyInAnyOrder-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Constructor Detail
-
ShouldContainExactlyInAnyOrder
private ShouldContainExactlyInAnyOrder(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy)
-
ShouldContainExactlyInAnyOrder
private ShouldContainExactlyInAnyOrder(Object actual, Object expected, Iterable<?> notFoundOrNotExpected, ShouldContainExactlyInAnyOrder.ErrorType errorType, ComparisonStrategy comparisonStrategy)
-
-
Method Detail
-
shouldContainExactlyInAnyOrder
public static ErrorMessageFactory shouldContainExactlyInAnyOrder(Object actual, Object expected, Iterable<?> notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy)
Creates a new.ShouldContainExactlyInAnyOrder- 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.
-
-