Class ShouldBeIn

All Implemented Interfaces:
ErrorMessageFactory

public class ShouldBeIn extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a value is in a group of values (e.g. an array or collection) failed.
Author:
Yvonne Wang, Joel Costigliola
  • Method Details

    • shouldBeIn

      public static ErrorMessageFactory shouldBeIn(Object actual, Object values, org.assertj.core.internal.ComparisonStrategy comparisonStrategy)
      Creates a new ShouldBeIn.
      Parameters:
      actual - the actual value in the failed assertion.
      values - the group of values where actual is expected to be in.
      comparisonStrategy - the ComparisonStrategy used to evaluate assertion.
      Returns:
      the created ErrorMessageFactory.
    • shouldBeIn

      public static ErrorMessageFactory shouldBeIn(Object actual, Object values)
      Creates a new ShouldBeIn.
      Parameters:
      actual - the actual value in the failed assertion.
      values - the group of values where actual is expected to be in.
      Returns:
      the created ErrorMessageFactory.