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

HHH-14614 - Better support for JUnit 5 on-failure handling #5080

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

sebersole
Copy link
Member

HHH-14614 - Better support for JUnit 5 on-failure handling

  • this commit is just the "infrastructure" piece.
  • still need to come back and use it.

The benefit is this allows us to perform some action when tests fail. E.g., atm we are forced to create and drop test data for each test method - @BeforeEach and @AfterEach. This support allows us to use @BeforeAll and @AfterAll. Previously this would be a potential problem when tests fail. This support though let's us hook into the "failure process" to rebuild the SessionFactory when we have these failures

context.getExecutableInvoker().invoke( callback, context.getRequiredTestInstance() );
}
catch (Exception e) {
log.warnf( e, "Error invoking FailureExpectedCallback handling : `%`", callback.getName() );
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not 100% sure, but should we use %s placeholder above?

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

Successfully merging this pull request may close these issues.

2 participants