You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have unit test which check equality for one class.
This test run for a long time. I checked - it's due to repeating non-null checking for same type
AccountActionCriteria class has 34 fields.
I checked count of packageHasAnnotation calls from single test. Its 7158.
7151. Check package for AccountActionCriteria has annotation JSR305_DEFAULT_ANNOTATION_NONNULL
7152. Check package for AccountActionCriteria has annotation ECLIPSE_DEFAULT_ANNOTATION_NONNULL
7153. Check package for AccountActionCriteria has annotation FINDBUGS1X_DEFAULT_ANNOTATION_NONNULL
7154. Check package for AccountActionCriteria has annotation JSR305_DEFAULT_ANNOTATION_NONNULL
7155. Check package for AccountActionCriteria has annotation ECLIPSE_DEFAULT_ANNOTATION_NONNULL
7156. Check package for AccountActionCriteria has annotation FINDBUGS1X_DEFAULT_ANNOTATION_NONNULL
7157. Check package for AccountActionCriteria has annotation JSR305_DEFAULT_ANNOTATION_NONNULL
7158. Check package for AccountActionCriteria has annotation ECLIPSE_DEFAULT_ANNOTATION_NONNULL
What did you expect?
Faster test execution time. Can annotation info be cached?
Which version of EqualsVerifier are you using?
2.4.5
The text was updated successfully, but these errors were encountered:
What steps will reproduce the problem?
I have unit test which check equality for one class.
This test run for a long time. I checked - it's due to repeating non-null checking for same type
AccountActionCriteria class has 34 fields.
I checked count of packageHasAnnotation calls from single test. Its 7158.
What did you expect?
Faster test execution time. Can annotation info be cached?
Which version of EqualsVerifier are you using?
2.4.5
The text was updated successfully, but these errors were encountered: