Package org.fest.assertions.error
Class ShouldNotBe
- java.lang.Object
-
- org.fest.assertions.error.BasicErrorMessageFactory
-
- org.fest.assertions.error.ShouldNotBe
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldNotBe extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a value does not satisfy a
failed.Condition
- Author:
- Yvonne Wang, Mikhail Mazursky
-
-
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 <T> ErrorMessageFactory
shouldNotBe(T actual, Condition<? super T> condition)
Creates a newShouldNotBe
.-
Methods inherited from class org.fest.assertions.error.BasicErrorMessageFactory
create, equals, hashCode, toString
-
-
-
-
Method Detail
-
shouldNotBe
public static <T> ErrorMessageFactory shouldNotBe(T actual, Condition<? super T> condition)
Creates a newShouldNotBe
.- Type Parameters:
T
- guarantees that the type of the actual value and the generic type of theCondition
are the same.- Parameters:
actual
- the actual value in the failed assertion.condition
- theCondition
.- Returns:
- the created
ErrorMessageFactory
.
-
-