Package org.assertj.core.error
Class ShouldBeInstanceOfAny
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldBeInstanceOfAny
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies that an object is 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
ShouldBeInstanceOfAny
(Object actual, Class<?>[] types) private
ShouldBeInstanceOfAny
(Throwable throwable, Class<?>[] types) -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactory
shouldBeInstanceOfAny
(Object actual, Class<?>[] types) Creates a new
.ShouldBeInstanceOfAny
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Constructor Details
-
ShouldBeInstanceOfAny
-
ShouldBeInstanceOfAny
-
-
Method Details
-
shouldBeInstanceOfAny
Creates a new
.ShouldBeInstanceOfAny
- Parameters:
actual
- the actual value in the failed assertion.types
- contains the type or typesactual
is expected to belong to.- Returns:
- the created
ErrorMessageFactory
.
-