Package org.fest.assertions.error
Class ShouldNotBeIn
- java.lang.Object
-
- org.fest.assertions.error.BasicErrorMessageFactory
-
- org.fest.assertions.error.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
-
-
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
shouldNotBeIn(java.lang.Object actual, java.lang.Object values)
Creates a new
.ShouldNotBeIn
static ErrorMessageFactory
shouldNotBeIn(java.lang.Object actual, java.lang.Object values, ComparisonStrategy comparisonStrategy)
Creates a new
.ShouldNotBeIn
-
Methods inherited from class org.fest.assertions.error.BasicErrorMessageFactory
create, equals, hashCode, toString
-
-
-
-
Method Detail
-
shouldNotBeIn
public static ErrorMessageFactory shouldNotBeIn(java.lang.Object actual, java.lang.Object values, ComparisonStrategy comparisonStrategy)
Creates a new
.ShouldNotBeIn
- Parameters:
actual
- the actual value in the failed assertion.values
- the group of values whereactual
is expected to be in.comparisonStrategy
- theComparisonStrategy
used to evaluate assertion.- Returns:
- the created
ErrorMessageFactory
.
-
shouldNotBeIn
public static ErrorMessageFactory shouldNotBeIn(java.lang.Object actual, java.lang.Object values)
Creates a new
.ShouldNotBeIn
- Parameters:
actual
- the actual value in the failed assertion.values
- the group of values whereactual
is expected to be in.- Returns:
- the created
ErrorMessageFactory
.
-
-