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