Class ShouldContainsOnlyOnce

java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldContainsOnlyOnce
All Implemented Interfaces:
ErrorMessageFactory

public class ShouldContainsOnlyOnce 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 a String.
Author:
William Delanoue
  • Method Details

    • shouldContainsOnlyOnce

      public static ErrorMessageFactory shouldContainsOnlyOnce(Object actual, Object expected, Set<?> notFound, Set<?> notOnlyOnce, org.assertj.core.internal.ComparisonStrategy comparisonStrategy)
      Creates a new ShouldContainsOnlyOnce.
      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.
      notOnlyOnce - values in actual that were not only once in expected.
      comparisonStrategy - the ComparisonStrategy used to evaluate assertion.
      Returns:
      the created ErrorMessageFactory.
    • shouldContainsOnlyOnce

      public static ErrorMessageFactory shouldContainsOnlyOnce(Object actual, Object expected, Set<?> notFound, Set<?> notOnlyOnce)
      Creates a new ShouldContainsOnlyOnce.
      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.
      notOnlyOnce - values in actual that were found not only once in expected.
      Returns:
      the created ErrorMessageFactory.