Package org.assertj.core.error
Class ShouldBeAnnotation
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldBeAnnotation
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldBeAnnotation extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a class is (or not) an annotation.- 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 ErrorMessageFactoryshouldBeAnnotation(Class<?> actual)Creates a newShouldBeAnnotation.static ErrorMessageFactoryshouldNotBeAnnotation(Class<?> actual)Creates a newShouldBeAnnotation.-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Method Detail
-
shouldBeAnnotation
public static ErrorMessageFactory shouldBeAnnotation(Class<?> actual)
Creates a newShouldBeAnnotation.- Parameters:
actual- the actual value in the failed assertion.- Returns:
- the created
ErrorMessageFactory.
-
shouldNotBeAnnotation
public static ErrorMessageFactory shouldNotBeAnnotation(Class<?> actual)
Creates a newShouldBeAnnotation.- Parameters:
actual- the actual value in the failed assertion.- Returns:
- the created
ErrorMessageFactory.
-
-