-
Notifications
You must be signed in to change notification settings - Fork 149
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
Allow running @Before and/or @BeforeClass before generating parameters #137
Comments
No, method which creates parameters runs before any |
Right, so this issue I opened is basically saying "Could we have that in a future version, please?" |
Let's make it clear |
@knezmilos13, I agree with @woprzech and @zbychupragmatists that However, this logic doesn't hold when you take |
I often use objects that I instantiate in @before or @BeforeClass in my tests; the problem is that the method that generates parameters for test is called before @BeforeClass and @before. For example, all my "task" objects will be null here:
Could there be a way to request that the method be called after @Before/@BeforeClass? Perhaps using an additional parameter on @parameters annotation?
The text was updated successfully, but these errors were encountered: