We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Assertions.fail()
Throwable
Add the following methods to the Assertions class:
Assertions
Assertions.fail(String message, Throwable cause);
Assertions.fail(Throwable cause);
The text was updated successfully, but these errors were encountered:
Thanks for opening the issue! I'm putting it up-for-grabs for now. Do you want to give it a go?
Sorry, something went wrong.
Yes ... you can assign this one to me as I think it will help me complete #343.
Added fail() methods that pass Throwables - closes junit-team#656.
f5681de
88d2dd2
smoyer64
No branches or pull requests
Overview
Assertions.fail()
methods that accept parameters of typeThrowable
provides convenience for certain test patterns.Deliverables
Add the following methods to the
Assertions
class:Assertions.fail(String message, Throwable cause);
Assertions.fail(Throwable cause);
The text was updated successfully, but these errors were encountered: