-
-
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
Add BeforeEachTemplating callback #883
Comments
I don't think so - I need a hook before argument providers are run. |
Why not create your own Regarding your proposal to modify existing callbacks: Note that argument providers are slightly separate from the rest of Jupiter because, strictly speaking, they are part of an extension ( This leaves your proposal to add a callback to providers that they call before resolution... |
This issue has been automatically marked as stale because it has not had recent activity. Given the limited bandwidth of the team, it will be automatically closed if no further activity occurs. Thank you for your contribution. |
This issue has been automatically closed due to inactivity. If you have a good use case for this feature, please feel free to reopen the issue. |
Current
BeforeEachCallback
andBeforeTestExecutionCallback
are invoked after ArgumentProvider finished. Would be either add more methods to the existing callbacks or to create a new callback that would run before the ArgumentProvider starts.Rationale: in my extension I'd like to impact how the data is generated in the ArgumentProviders (I'm interested in
@MethodSource
in particular). So that it's possible to set the seed for randomization that happens in the@MethodSource
.The text was updated successfully, but these errors were encountered: