-
Notifications
You must be signed in to change notification settings - Fork 162
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
NullPointerException when toString() of parameter returns null #66
Comments
Hi @PascalSchumacher, the problem is really that
I will fix it in a moment :-) |
Is it somehow urgent? I can provide you a snapshot version to retest if you want. Otherwise I can create a new release hopefully before christmas. What would you prefer @PascalSchumacher? |
* seems that findbugs assumes that toString() never returns null :-S
Btw. second commit suppresses findbugs warning because findbugs assumes that |
Thanks for the ultra quick fix. 👍 Yes, returning
Thanks for the offer, but it's not urgent so I'm fine with waiting. |
Hi,
thanks for providing junit-dataprovider.
While working on a pull request to switch assertj from JUnitParams to junit-dataprovider I encountered the this problem.
When I try to use null as a parameter, e.g.:
I get
Because in this case TestDescription#toString returns null. Not sure if this is something that junit-dataprovider should handle?
The text was updated successfully, but these errors were encountered: