Package org.assertj.core.error
Class ShouldHaveAnnotations
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldHaveAnnotations
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldHaveAnnotations extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a class have an annotation.
-
-
Field Summary
-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ShouldHaveAnnotations(java.lang.Class<?> actual, java.util.Collection<java.lang.Class<? extends java.lang.annotation.Annotation>> expected, java.util.Collection<java.lang.Class<? extends java.lang.annotation.Annotation>> missing)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactory
shouldHaveAnnotations(java.lang.Class<?> actual, java.util.Collection<java.lang.Class<? extends java.lang.annotation.Annotation>> expected, java.util.Collection<java.lang.Class<? extends java.lang.annotation.Annotation>> missing)
Creates a new
.ShouldHaveAnnotations
-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Method Detail
-
shouldHaveAnnotations
public static ErrorMessageFactory shouldHaveAnnotations(java.lang.Class<?> actual, java.util.Collection<java.lang.Class<? extends java.lang.annotation.Annotation>> expected, java.util.Collection<java.lang.Class<? extends java.lang.annotation.Annotation>> missing)
Creates a new
.ShouldHaveAnnotations
- Parameters:
actual
- the actual value in the failed assertion.expected
- expected annotations for this classmissing
- missing annotations for this class- Returns:
- the created
ErrorMessageFactory
.
-
-