org.junit.jupiter.api.extension.TestExecutionExceptionHandler Maven / Gradle / Ivy
Show all versions of junit-jupiter-api Show documentation
/*
* Copyright 2015-2024 the original author or authors.
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution and is available at
*
* https://www.eclipse.org/legal/epl-v20.html
*/
package org.junit.jupiter.api.extension;
import static org.apiguardian.api.API.Status.STABLE;
import org.apiguardian.api.API;
/**
* {@code TestExecutionExceptionHandler} defines the API for {@link Extension
* Extensions} that wish to handle exceptions thrown during test execution.
*
* In this context, test execution refers to the physical
* invocation of a {@code @Test} method and not to any test-level extensions
* or callbacks.
*
*
Common use cases include swallowing an exception if it's anticipated
* or rolling back a transaction in certain error scenarios.
*
*
Constructor Requirements
*
* Consult the documentation in {@link Extension} for details on
* constructor requirements.
*
* @since 5.0
* @see LifecycleMethodExecutionExceptionHandler
*/
@FunctionalInterface
@API(status = STABLE, since = "5.0")
public interface TestExecutionExceptionHandler extends Extension {
/**
* Handle the supplied {@link Throwable throwable}.
*
*
Implementors must perform one of the following.
*
* - Swallow the supplied {@code throwable}, thereby preventing propagation.
* - Rethrow the supplied {@code throwable} as is.
* - Throw a new exception, potentially wrapping the supplied {@code throwable}.
*
*
* If the supplied {@code throwable} is swallowed, subsequent
* {@code TestExecutionExceptionHandlers} will not be invoked; otherwise,
* the next registered {@code TestExecutionExceptionHandler} (if there is
* one) will be invoked with any {@link Throwable} thrown by this handler.
*
*
Note that the {@link ExtensionContext#getExecutionException() execution
* exception} in the supplied {@code ExtensionContext} will not
* contain the {@code Throwable} thrown during invocation of the corresponding
* {@code @Test} method.
*
* @param context the current extension context; never {@code null}
* @param throwable the {@code Throwable} to handle; never {@code null}
*/
void handleTestExecutionException(ExtensionContext context, Throwable throwable) throws Throwable;
}