Package org.assertj.core.error
Class ShouldContainExactly
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldContainExactly
- All Implemented Interfaces:
ErrorMessageFactory
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, exactly meaning same elements in same order. A group of elements can be a
collection, an array or a
String
.-
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
ShouldContainExactly
(Object actual, Object expected, int actualSize, int expectedSize) private
ShouldContainExactly
(Object actual, Object expected, int actualSize, int expectedSize, ComparisonStrategy comparisonStrategy) private
ShouldContainExactly
(Object actualElement, Object expectedElement, int indexOfDifferentElements, ComparisonStrategy comparisonStrategy) private
ShouldContainExactly
(Object actual, Object expected, Object notFound, Object notExpected, ComparisonStrategy comparisonStrategy) private
ShouldContainExactly
(Object actual, Object expected, Object notFound, ComparisonStrategy comparisonStrategy) -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactory
elementsDifferAtIndex
(Object actualElement, Object expectedElement, int indexOfDifferentElements) Creates a newShouldContainExactly
for the case where actual and expected have the same elements in different order.static ErrorMessageFactory
elementsDifferAtIndex
(Object actualElement, Object expectedElement, int indexOfDifferentElements, ComparisonStrategy comparisonStrategy) Creates a newShouldContainExactly
for the case where actual and expected have the same elements in different order according to the givenComparisonStrategy
.static ErrorMessageFactory
shouldContainExactly
(Object actual, Object expected, Object notFound, Iterable<?> notExpected) Creates a newShouldContainExactly
.static ErrorMessageFactory
shouldContainExactly
(Object actual, Object expected, Object notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy) Creates a newShouldContainExactly
.static ErrorMessageFactory
shouldContainExactly
(Object actual, Object expected, Object notFound, Object notExpected) Creates a newShouldContainExactly
.static ErrorMessageFactory
shouldContainExactly
(Object actual, Object expected, Object notFound, Object notExpected, ComparisonStrategy comparisonStrategy) Creates a newShouldContainExactly
.static ErrorMessageFactory
shouldHaveSameSize
(Object actual, Object expected, int actualSize, int expectedSize, ComparisonStrategy comparisonStrategy) Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Constructor Details
-
ShouldContainExactly
private ShouldContainExactly(Object actual, Object expected, int actualSize, int expectedSize, ComparisonStrategy comparisonStrategy) -
ShouldContainExactly
-
ShouldContainExactly
private ShouldContainExactly(Object actual, Object expected, Object notFound, Object notExpected, ComparisonStrategy comparisonStrategy) -
ShouldContainExactly
private ShouldContainExactly(Object actual, Object expected, Object notFound, ComparisonStrategy comparisonStrategy) -
ShouldContainExactly
private ShouldContainExactly(Object actualElement, Object expectedElement, int indexOfDifferentElements, ComparisonStrategy comparisonStrategy)
-
-
Method Details
-
shouldContainExactly
public static ErrorMessageFactory shouldContainExactly(Object actual, Object expected, Object notFound, Object notExpected, ComparisonStrategy comparisonStrategy) Creates a newShouldContainExactly
.- Parameters:
actual
- the actual value in the failed assertion.expected
- values expected to be contained inactual
.notFound
- values inexpected
not found inactual
.notExpected
- values inactual
that were not inexpected
.comparisonStrategy
- theComparisonStrategy
used to evaluate assertion.- Returns:
- the created
ErrorMessageFactory
.
-
shouldContainExactly
public static ErrorMessageFactory shouldContainExactly(Object actual, Object expected, Object notFound, Iterable<?> notExpected, ComparisonStrategy comparisonStrategy) Creates a newShouldContainExactly
.- Parameters:
actual
- the actual value in the failed assertion.expected
- values expected to be contained inactual
.notFound
- values inexpected
not found inactual
.notExpected
- values inactual
that were not inexpected
.comparisonStrategy
- theComparisonStrategy
used to evaluate assertion.- Returns:
- the created
ErrorMessageFactory
.
-
shouldContainExactly
public static ErrorMessageFactory shouldContainExactly(Object actual, Object expected, Object notFound, Object notExpected) Creates a newShouldContainExactly
.- Parameters:
actual
- the actual value in the failed assertion.expected
- values expected to be contained inactual
.notFound
- values inexpected
not found inactual
.notExpected
- values inactual
that were not inexpected
.- Returns:
- the created
ErrorMessageFactory
.
-
shouldContainExactly
public static ErrorMessageFactory shouldContainExactly(Object actual, Object expected, Object notFound, Iterable<?> notExpected) Creates a newShouldContainExactly
.- Parameters:
actual
- the actual value in the failed assertion.expected
- values expected to be contained inactual
.notFound
- values inexpected
not found inactual
.notExpected
- values inactual
that were not inexpected
.- Returns:
- the created
ErrorMessageFactory
.
-
shouldHaveSameSize
public static ErrorMessageFactory shouldHaveSameSize(Object actual, Object expected, int actualSize, int expectedSize, ComparisonStrategy comparisonStrategy) -
elementsDifferAtIndex
public static ErrorMessageFactory elementsDifferAtIndex(Object actualElement, Object expectedElement, int indexOfDifferentElements, ComparisonStrategy comparisonStrategy) Creates a newShouldContainExactly
for the case where actual and expected have the same elements in different order according to the givenComparisonStrategy
.- Parameters:
actualElement
- the actual element at indexOfDifferentElements index.expectedElement
- the expected element at indexOfDifferentElements index.indexOfDifferentElements
- index where actual and expect differs.comparisonStrategy
- theComparisonStrategy
used to evaluate assertion.- Returns:
- the created
ErrorMessageFactory
.
-
elementsDifferAtIndex
public static ErrorMessageFactory elementsDifferAtIndex(Object actualElement, Object expectedElement, int indexOfDifferentElements) Creates a newShouldContainExactly
for the case where actual and expected have the same elements in different order.- Parameters:
actualElement
- the actual element at indexOfDifferentElements index.expectedElement
- the expected element at indexOfDifferentElements index.indexOfDifferentElements
- index where actual and expect differs.- Returns:
- the created
ErrorMessageFactory
.
-