Package org.assertj.core.error
Class ShouldContainExactly
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldContainExactly
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldContainExactly 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, exactly meaning same elements in same order. A group of elements can be a collection, an array or aString.
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description privateShouldContainExactly(java.lang.Object actualElement, java.lang.Object expectedElement, int indexOfDifferentElements, ComparisonStrategy comparisonStrategy)privateShouldContainExactly(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Object notExpected, ComparisonStrategy comparisonStrategy)privateShouldContainExactly(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, ComparisonStrategy comparisonStrategy)privateShouldContainExactly(java.lang.Object actual, java.lang.Object expected, ComparisonStrategy comparisonStrategy, java.lang.Object unexpected)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactoryelementsDifferAtIndex(java.lang.Object actualElement, java.lang.Object expectedElement, int indexOfDifferentElements)Creates a newfor the case where actual and expected have the same elements in different order.ShouldContainExactlystatic ErrorMessageFactoryelementsDifferAtIndex(java.lang.Object actualElement, java.lang.Object expectedElement, int indexOfDifferentElements, ComparisonStrategy comparisonStrategy)Creates a newfor the case where actual and expected have the same elements in different order according to the givenShouldContainExactlyComparisonStrategy.static ErrorMessageFactoryshouldContainExactly(java.lang.Object actual, java.lang.Iterable<?> expected, java.lang.Iterable<?> notFound, java.lang.Iterable<?> notExpected)Creates a new.ShouldContainExactlystatic ErrorMessageFactoryshouldContainExactly(java.lang.Object actual, java.lang.Iterable<?> expected, java.lang.Iterable<?> notFound, java.lang.Iterable<?> notExpected, ComparisonStrategy comparisonStrategy)Creates a new.ShouldContainExactly-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Constructor Detail
-
ShouldContainExactly
private ShouldContainExactly(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, java.lang.Object notExpected, ComparisonStrategy comparisonStrategy)
-
ShouldContainExactly
private ShouldContainExactly(java.lang.Object actual, java.lang.Object expected, java.lang.Object notFound, ComparisonStrategy comparisonStrategy)
-
ShouldContainExactly
private ShouldContainExactly(java.lang.Object actual, java.lang.Object expected, ComparisonStrategy comparisonStrategy, java.lang.Object unexpected)
-
ShouldContainExactly
private ShouldContainExactly(java.lang.Object actualElement, java.lang.Object expectedElement, int indexOfDifferentElements, ComparisonStrategy comparisonStrategy)
-
-
Method Detail
-
shouldContainExactly
public static ErrorMessageFactory shouldContainExactly(java.lang.Object actual, java.lang.Iterable<?> expected, java.lang.Iterable<?> notFound, java.lang.Iterable<?> notExpected, ComparisonStrategy comparisonStrategy)
Creates a new.ShouldContainExactly- 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.
-
shouldContainExactly
public static ErrorMessageFactory shouldContainExactly(java.lang.Object actual, java.lang.Iterable<?> expected, java.lang.Iterable<?> notFound, java.lang.Iterable<?> notExpected)
Creates a new.ShouldContainExactly- 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.
-
elementsDifferAtIndex
public static ErrorMessageFactory elementsDifferAtIndex(java.lang.Object actualElement, java.lang.Object expectedElement, int indexOfDifferentElements, ComparisonStrategy comparisonStrategy)
Creates a newfor the case where actual and expected have the same elements in different order according to the givenShouldContainExactlyComparisonStrategy.- Parameters:
actualElement- the actual element at indexOfDifferentElements index.expectedElement- the expected element at indexOfDifferentElements index.indexOfDifferentElements- index where actual and expect differs.comparisonStrategy- theComparisonStrategyused to evaluate assertion.- Returns:
- the created
ErrorMessageFactory.
-
elementsDifferAtIndex
public static ErrorMessageFactory elementsDifferAtIndex(java.lang.Object actualElement, java.lang.Object expectedElement, int indexOfDifferentElements)
Creates a newfor the case where actual and expected have the same elements in different order.ShouldContainExactly- 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.
-
-