Package org.assertj.core.error
Class ShouldNotBeInstance
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldNotBeInstance
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies that an object is not an instance of some type failed.
-
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
ShouldNotBeInstance
(Object actual, Class<?> type) private
ShouldNotBeInstance
(Throwable throwable, Class<?> type) -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactory
shouldNotBeInstance
(Object actual, Class<?> type) Creates a new
.ShouldNotBeInstance
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Constructor Details
-
ShouldNotBeInstance
-
ShouldNotBeInstance
-
-
Method Details
-
shouldNotBeInstance
Creates a new
.ShouldNotBeInstance
- Parameters:
actual
- the actual value in the failed assertion.type
- the typeactual
is expected to belong to.- Returns:
- the created
ErrorMessageFactory
.
-