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