Package org.fest.assertions.error
Class ShouldNotContain
java.lang.Object
org.fest.assertions.error.BasicErrorMessageFactory
org.fest.assertions.error.ShouldNotContain
- All Implemented Interfaces:
ErrorMessageFactory
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
.- Author:
- Alex Ruiz, Joel Costigliola
-
Field Summary
Fields inherited from class org.fest.assertions.error.BasicErrorMessageFactory
arguments, format
-
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactory
shouldNotContain
(Object actual, Object expected, Object found) Creates a newShouldNotContain
.static ErrorMessageFactory
shouldNotContain
(Object actual, Object expected, Object found, ComparisonStrategy comparisonStrategy) Creates a newShouldNotContain
.Methods inherited from class org.fest.assertions.error.BasicErrorMessageFactory
create, equals, hashCode, toString
-
Method Details
-
shouldNotContain
public static ErrorMessageFactory shouldNotContain(Object actual, Object expected, Object found, ComparisonStrategy comparisonStrategy) Creates a newShouldNotContain
.- 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
Creates a newShouldNotContain
.- 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
.
-