Class ShouldNotContain

  • All Implemented Interfaces:
    ErrorMessageFactory

    public class ShouldNotContain
    extends BasicErrorMessageFactory
    Creates an error message indicating that an assertion that verifies a group of elements does not contain a given set of values failed. A group of elements can be a collection, an array or a String.
    • Constructor Detail

      • ShouldNotContain

        private ShouldNotContain​(java.lang.Object actual,
                                 java.lang.Object expected,
                                 java.lang.Object found,
                                 ComparisonStrategy comparisonStrategy)
      • ShouldNotContain

        private ShouldNotContain​(java.lang.Object actual,
                                 java.util.List<java.lang.String> matchingContent,
                                 java.lang.String filterDescription)
    • Method Detail

      • shouldNotContain

        public static ErrorMessageFactory shouldNotContain​(java.lang.Object actual,
                                                           java.lang.Object expected,
                                                           java.lang.Object found,
                                                           ComparisonStrategy comparisonStrategy)
        Creates a new ShouldNotContain.
        Parameters:
        actual - the actual value in the failed assertion.
        expected - values expected not to be contained in actual.
        found - the values in expected found in actual.
        comparisonStrategy - the ComparisonStrategy used to evaluate assertion.
        Returns:
        the created ErrorMessageFactory.
      • shouldNotContain

        public static ErrorMessageFactory shouldNotContain​(java.lang.Object actual,
                                                           java.lang.Object expected,
                                                           java.lang.Object found)
        Creates a new ShouldNotContain.
        Parameters:
        actual - the actual value in the failed assertion.
        expected - values expected not to be contained in actual.
        found - the values in expected found in actual.
        Returns:
        the created ErrorMessageFactory.
      • directoryShouldNotContain

        public static ErrorMessageFactory directoryShouldNotContain​(java.io.File actual,
                                                                    java.util.List<java.io.File> matchingContent,
                                                                    java.lang.String filterDescription)
      • toFileNames

        private static java.util.List<java.lang.String> toFileNames​(java.util.List<java.io.File> files)
      • directoryShouldNotContain

        public static ErrorMessageFactory directoryShouldNotContain​(java.nio.file.Path actual,
                                                                    java.util.List<java.nio.file.Path> matchingContent,
                                                                    java.lang.String filterDescription)
      • toPathNames

        private static java.util.List<java.lang.String> toPathNames​(java.util.List<java.nio.file.Path> files)