Package org.assertj.core.error
Class ShouldOnlyHaveFields
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldOnlyHaveFields
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a class has only the fields.
-
Nested Class Summary
Nested Classes -
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
ShouldOnlyHaveFields
(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected, boolean declared) private
ShouldOnlyHaveFields
(Class<?> actual, Collection<String> expected, Collection<String> notFoundOrNotExpected, ShouldOnlyHaveFields.ErrorType errorType, boolean declared) -
Method Summary
Modifier and TypeMethodDescriptionprivate static ErrorMessageFactory
create
(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected, boolean declared) static ErrorMessageFactory
shouldOnlyHaveDeclaredFields
(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected) Creates a new
.ShouldOnlyHaveFields
static ErrorMessageFactory
shouldOnlyHaveFields
(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected) Creates a new
.ShouldOnlyHaveFields
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Constructor Details
-
ShouldOnlyHaveFields
private ShouldOnlyHaveFields(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected, boolean declared) -
ShouldOnlyHaveFields
private ShouldOnlyHaveFields(Class<?> actual, Collection<String> expected, Collection<String> notFoundOrNotExpected, ShouldOnlyHaveFields.ErrorType errorType, boolean declared)
-
-
Method Details
-
shouldOnlyHaveFields
public static ErrorMessageFactory shouldOnlyHaveFields(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected) Creates a new
.ShouldOnlyHaveFields
- Parameters:
actual
- the actual value in the failed assertion.expected
- expected fields for this classnotFound
- fields inexpected
not found in theactual
.notExpected
- fields in theactual
that were not inexpected
.- Returns:
- the created
ErrorMessageFactory
.
-
shouldOnlyHaveDeclaredFields
public static ErrorMessageFactory shouldOnlyHaveDeclaredFields(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected) Creates a new
.ShouldOnlyHaveFields
- Parameters:
actual
- the actual value in the failed assertion.expected
- expected fields for this classnotFound
- fields inexpected
not found in theactual
.notExpected
- fields in theactual
that were not inexpected
.- Returns:
- the created
ErrorMessageFactory
.
-
create
private static ErrorMessageFactory create(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected, boolean declared)
-