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
ConstructorsModifierConstructorDescriptionprivateShouldOnlyHaveFields(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected, boolean declared) privateShouldOnlyHaveFields(Class<?> actual, Collection<String> expected, Collection<String> notFoundOrNotExpected, ShouldOnlyHaveFields.ErrorType errorType, boolean declared) -
Method Summary
Modifier and TypeMethodDescriptionprivate static ErrorMessageFactorycreate(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected, boolean declared) static ErrorMessageFactoryshouldOnlyHaveDeclaredFields(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected) Creates a new.ShouldOnlyHaveFieldsstatic ErrorMessageFactoryshouldOnlyHaveFields(Class<?> actual, Collection<String> expected, Collection<String> notFound, Collection<String> notExpected) Creates a new.ShouldOnlyHaveFieldsMethods 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 inexpectednot found in theactual.notExpected- fields in theactualthat 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 inexpectednot found in theactual.notExpected- fields in theactualthat 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)
-