public class ShouldNotHave extends BasicErrorMessageFactory
Condition
failed.arguments, format, formatter
Modifier | Constructor and Description |
---|---|
private |
ShouldNotHave(java.lang.Object actual,
Condition<?> condition) |
Modifier and Type | Method and Description |
---|---|
static <T> ErrorMessageFactory |
shouldNotHave(T actual,
Condition<? super T> condition)
Creates a new
ShouldNotHave . |
create, create, create, equals, hashCode, toString, unquotedString
private ShouldNotHave(java.lang.Object actual, Condition<?> condition)
public static <T> ErrorMessageFactory shouldNotHave(T actual, Condition<? super T> condition)
ShouldNotHave
.T
- guarantees that the type of the actual value and the generic type of the Condition
are the same.actual
- the actual value in the failed assertion.condition
- the Condition
.ErrorMessageFactory
.