Skip to content
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

Checked exceptions within "it" blocks #40

Closed
tprado opened this issue Feb 24, 2016 · 0 comments
Closed

Checked exceptions within "it" blocks #40

tprado opened this issue Feb 24, 2016 · 0 comments

Comments

@tprado
Copy link
Collaborator

tprado commented Feb 24, 2016

Sometimes the subject of a test can throw checked exceptions. In these cases the compiler will require the method invocation to be inside a try/catch block:

it("does something important", () -> {
    ...
    try {
        result = methodThatCouldThrowCheckedExceptions();
    } catch (Exception e) {
        ...
    }
    ...
});

In order to avoid this situation, the framework could provide a wrapper method to translate checked exceptions into unchecked exceptions:

it("does something important", () -> {
    ...
    result = unsafe(() -> methodThatCouldThrowCheckedExceptions());
    ...
});

Reference: Stack Overflow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant