Package org.assertj.core.error
Class ShouldBeInterface
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldBeInterface
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldBeInterface extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a class is (or not) an interface.- Author:
- William Delanoue
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactory
shouldBeInterface(Class<?> actual)
Creates a newShouldBeInterface
.static ErrorMessageFactory
shouldNotBeInterface(Class<?> actual)
Creates a newShouldBeInterface
.-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Method Detail
-
shouldBeInterface
public static ErrorMessageFactory shouldBeInterface(Class<?> actual)
Creates a newShouldBeInterface
.- Parameters:
actual
- the actual value in the failed assertion.- Returns:
- the created
ErrorMessageFactory
.
-
shouldNotBeInterface
public static ErrorMessageFactory shouldNotBeInterface(Class<?> actual)
Creates a newShouldBeInterface
.- Parameters:
actual
- the actual value in the failed assertion.- Returns:
- the created
ErrorMessageFactory
.
-
-