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 a String.
Author:
Joel Costigliola
  • Method Details

    • shouldContainExactly

      public static ErrorMessageFactory shouldContainExactly(Object actual, Iterable<?> expected, Iterable<?> notFound, Iterable<?> notExpected, org.assertj.core.internal.ComparisonStrategy comparisonStrategy)
      Creates a new ShouldContainExactly.
      Parameters:
      actual - the actual value in the failed assertion.
      expected - values expected to be contained in actual.
      notFound - values in expected not found in actual.
      notExpected - values in actual that were not in expected.
      comparisonStrategy - the ComparisonStrategy used to evaluate assertion.
      Returns:
      the created ErrorMessageFactory.
    • shouldContainExactly

      public static ErrorMessageFactory shouldContainExactly(Object actual, Iterable<?> expected, Iterable<?> notFound, Iterable<?> notExpected)
      Creates a new ShouldContainExactly.
      Parameters:
      actual - the actual value in the failed assertion.
      expected - values expected to be contained in actual.
      notFound - values in expected not found in actual.
      notExpected - values in actual that were not in expected.
      Returns:
      the created ErrorMessageFactory.
    • shouldContainExactlyWithIndexes

      public static ErrorMessageFactory shouldContainExactlyWithIndexes(Object actual, Iterable<?> expected, List<org.assertj.core.internal.IndexedDiff> indexDifferences, org.assertj.core.internal.ComparisonStrategy comparisonStrategy)
      Creates a new ShouldContainExactly.
      Parameters:
      actual - the actual value in the failed assertion.
      expected - values expected to be contained in actual.
      indexDifferences - the IndexedDiff the actual and expected differ at.
      comparisonStrategy - the ComparisonStrategy used to evaluate assertion.
      Returns:
      the created ErrorMessageFactory.
    • shouldContainExactlyWithIndexes

      public static ErrorMessageFactory shouldContainExactlyWithIndexes(Object actual, Iterable<?> expected, List<org.assertj.core.internal.IndexedDiff> indexDifferences)
      Creates a new ShouldContainExactly.
      Parameters:
      actual - the actual value in the failed assertion.
      expected - values expected to be contained in actual.
      indexDifferences - the IndexedDiff the actual and expected differ at.
      Returns:
      the created ErrorMessageFactory.
    • elementsDifferAtIndex

      public static ErrorMessageFactory elementsDifferAtIndex(Object actualElement, Object expectedElement, int indexOfDifferentElements, org.assertj.core.internal.ComparisonStrategy comparisonStrategy)
      Creates a new ShouldContainExactly for the case where actual and expected have the same elements in different order according to the given ComparisonStrategy.
      Parameters:
      actualElement - the actual element at indexOfDifferentElements index.
      expectedElement - the expected element at indexOfDifferentElements index.
      indexOfDifferentElements - index where actual and expect differs.
      comparisonStrategy - the ComparisonStrategy used to evaluate assertion.
      Returns:
      the created ErrorMessageFactory.
    • elementsDifferAtIndex

      public static ErrorMessageFactory elementsDifferAtIndex(Object actualElement, Object expectedElement, int indexOfDifferentElements)
      Creates a new ShouldContainExactly 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.