Package org.assertj.core.error
Class ShouldNotContain
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.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 aString
.
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ShouldNotContain(java.lang.Object actual, java.lang.Object expected, java.lang.Object found, ComparisonStrategy comparisonStrategy)
private
ShouldNotContain(java.lang.Object actual, java.util.List<java.lang.String> matchingContent, java.lang.String filterDescription)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactory
directoryShouldNotContain(java.io.File actual, java.util.List<java.lang.String> matchingContent, java.lang.String filterDescription)
static ErrorMessageFactory
directoryShouldNotContain(java.nio.file.Path actual, java.util.List<java.lang.String> matchingContent, java.lang.String filterDescription)
static ErrorMessageFactory
shouldNotContain(java.lang.Object actual, java.lang.Object expected, java.lang.Object found)
Creates a new
.ShouldNotContain
static ErrorMessageFactory
shouldNotContain(java.lang.Object actual, java.lang.Object expected, java.lang.Object found, ComparisonStrategy comparisonStrategy)
Creates a new
.ShouldNotContain
-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
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 inactual
.found
- the values inexpected
found inactual
.comparisonStrategy
- theComparisonStrategy
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 inactual
.found
- the values inexpected
found inactual
.- Returns:
- the created
ErrorMessageFactory
.
-
directoryShouldNotContain
public static ErrorMessageFactory directoryShouldNotContain(java.io.File actual, java.util.List<java.lang.String> matchingContent, java.lang.String filterDescription)
-
directoryShouldNotContain
public static ErrorMessageFactory directoryShouldNotContain(java.nio.file.Path actual, java.util.List<java.lang.String> matchingContent, java.lang.String filterDescription)
-
-