Class ShouldNotBeIn

  • All Implemented Interfaces:
    ErrorMessageFactory

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

      • ShouldNotBeIn

        private ShouldNotBeIn​(Object actual,
                              Object values,
                              org.assertj.core.internal.ComparisonStrategy comparisonStrategy)
    • Method Detail

      • shouldNotBeIn

        public static ErrorMessageFactory shouldNotBeIn​(Object actual,
                                                        Object values,
                                                        org.assertj.core.internal.ComparisonStrategy comparisonStrategy)
        Creates a new ShouldNotBeIn.
        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.
      • shouldNotBeIn

        public static ErrorMessageFactory shouldNotBeIn​(Object actual,
                                                        Object values)
        Creates a new ShouldNotBeIn.
        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.