-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Process extensions registered on non-static fields earlier #3895
Merged
marcphilipp
merged 29 commits into
main
from
issues/3437-ExtendWith-on-fields-early-registration
Jul 30, 2024
Merged
Process extensions registered on non-static fields earlier #3895
marcphilipp
merged 29 commits into
main
from
issues/3437-ExtendWith-on-fields-early-registration
Jul 30, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This commit is truly just an "experiment". The actual "fix" might take a completely different approach. Various tests in ExtensionRegistrationViaParametersAndFieldsTests fail with the changes in this commit. Issue: #3437
marcphilipp
changed the title
Issues/3437 extend with on fields early registration
Process extensions registered on non-static fields before test class instantiation
Jul 22, 2024
This reverts commit f61fdf9.
marcphilipp
force-pushed
the
issues/3437-ExtendWith-on-fields-early-registration
branch
from
July 23, 2024 14:10
da0679f
to
9b5a86a
Compare
marcphilipp
force-pushed
the
issues/3437-ExtendWith-on-fields-early-registration
branch
from
July 23, 2024 15:27
9b5a86a
to
305eaf4
Compare
marcphilipp
changed the title
Process extensions registered on non-static fields before test class instantiation
Process extensions registered on non-static fields earlier
Jul 30, 2024
marcphilipp
deleted the
issues/3437-ExtendWith-on-fields-early-registration
branch
July 30, 2024 10:01
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
This PR changes extensions declared via
@ExtendWith
on non-static fields to be registered before the test instance is instantiated. Since these declarative extensions are documented to be sorted along with programmatic extensions registered via@RegisterExtension
the latter are also registered earlier. Since, however, non-static fields are not initialized until the test class is instantiated, this PR introduces the internal concept of "uninitialized extensions" that are registered early and initialized whenever an instance of the test class is created.Fixes #3437. Resolves #3463.
I hereby agree to the terms of the JUnit Contributor License Agreement.
Definition of Done
@API
annotations