-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
AllMembersSupplier.addMultiPointMethods() swallows exceptions #449
Comments
Targetting this issue for 4.12 as GitHub does not allow adding labels to the corresponding pull request (#529). |
@marcphilipp: Though I'd certainly would like to see this issue fixed, do note that the referenced pull request solves another problem. To my knowledge there has been no decision on how to handle exceptions originating from |
@Stephan202 Thanks for the clarification. |
…thod exceptions Also includes a rewrite of the Theory nullsAccepted code, since that relied on the previous behaviour of this.
The exception-swallowing was indeed the initially intended behavior. I'm willing to accept that my original intentions may have been bad (http://www.quickmeme.com/meme/3q13l8/), but I think we're stuck with having to ask users to intentionally turn off the behavior that I originally intentionally turned on. :-( |
Fixes #449, stopping AllMembersSupplier & Theories hiding DataPoints method exceptions
From the class
AllMembersSupplier
:This try/catch block seems inappropriate to me: exceptions thrown in a
@DataPoints
-annotated method will silently be ignored. Surely this cannot be the desired behavior?The text was updated successfully, but these errors were encountered: