org.junit.jupiter.api.AssertDoesNotThrow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-jupiter-api Show documentation
Show all versions of junit-jupiter-api Show documentation
Module "junit-jupiter-api" of JUnit 5.
/*
* 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;
import static org.junit.jupiter.api.AssertionFailureBuilder.assertionFailure;
import java.util.function.Supplier;
import org.junit.jupiter.api.function.Executable;
import org.junit.jupiter.api.function.ThrowingSupplier;
import org.junit.platform.commons.util.StringUtils;
import org.junit.platform.commons.util.UnrecoverableExceptions;
import org.opentest4j.AssertionFailedError;
/**
* {@code AssertDoesNotThrow} is a collection of utility methods that support
* explicitly asserting that a given code block does not throw an exception.
*
* @since 5.2
*/
class AssertDoesNotThrow {
private AssertDoesNotThrow() {
/* no-op */
}
static void assertDoesNotThrow(Executable executable) {
assertDoesNotThrow(executable, (Object) null);
}
static void assertDoesNotThrow(Executable executable, String message) {
assertDoesNotThrow(executable, (Object) message);
}
static void assertDoesNotThrow(Executable executable, Supplier messageSupplier) {
assertDoesNotThrow(executable, (Object) messageSupplier);
}
private static void assertDoesNotThrow(Executable executable, Object messageOrSupplier) {
try {
executable.execute();
}
catch (Throwable t) {
UnrecoverableExceptions.rethrowIfUnrecoverable(t);
throw createAssertionFailedError(messageOrSupplier, t);
}
}
static T assertDoesNotThrow(ThrowingSupplier supplier) {
return assertDoesNotThrow(supplier, (Object) null);
}
static T assertDoesNotThrow(ThrowingSupplier supplier, String message) {
return assertDoesNotThrow(supplier, (Object) message);
}
static T assertDoesNotThrow(ThrowingSupplier supplier, Supplier messageSupplier) {
return assertDoesNotThrow(supplier, (Object) messageSupplier);
}
private static T assertDoesNotThrow(ThrowingSupplier supplier, Object messageOrSupplier) {
try {
return supplier.get();
}
catch (Throwable t) {
UnrecoverableExceptions.rethrowIfUnrecoverable(t);
throw createAssertionFailedError(messageOrSupplier, t);
}
}
private static AssertionFailedError createAssertionFailedError(Object messageOrSupplier, Throwable t) {
return assertionFailure() //
.message(messageOrSupplier) //
.reason("Unexpected exception thrown: " + t.getClass().getName() + buildSuffix(t.getMessage())) //
.cause(t) //
.build();
}
private static String buildSuffix(String message) {
return StringUtils.isNotBlank(message) ? ": " + message : "";
}
}