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
shouldNotBeIn
public static ErrorMessageFactory shouldNotBeIn(Object actual,
Object values,
org.fest.util.ComparisonStrategy comparisonStrategy)
- Creates a new
ShouldNotBeIn
.
- Parameters:
actual
- the actual value in the failed assertion.values
- the group of values where actual
is expected to be in.comparisonStrategy
- the ComparisonStrategy
used to evaluate assertion.
- Returns:
- the created
ErrorMessageFactory
.
shouldNotBeIn
public static ErrorMessageFactory shouldNotBeIn(Object actual,
Object values)
- Creates a new
ShouldNotBeIn
.
- Parameters:
actual
- the actual value in the failed assertion.values
- the group of values where actual
is expected to be in.
- Returns:
- the created
ErrorMessageFactory
.
Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.