/* * Copyright 2015-2017 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 v1.0 which * accompanies this distribution and is available at * * http://www.eclipse.org/legal/epl-v10.html */ package org.junit.jupiter.api; import static org.junit.jupiter.api.AssertionUtils.fail; import java.util.function.BooleanSupplier; import java.util.function.Supplier; /** * {@code AssertFalse} is a collection of utility methods that support asserting * {@code false} in tests. * * @since 5.0 */ class AssertFalse { static void assertFalse(boolean condition) { assertFalse(() -> condition, () -> null); } static void assertFalse(boolean condition, String message) { assertFalse(() -> condition, () -> message); } static void assertFalse(boolean condition, Supplier<String> messageSupplier) { assertFalse(() -> condition, messageSupplier); } static void assertFalse(BooleanSupplier booleanSupplier) { assertFalse(booleanSupplier, () -> null); } static void assertFalse(BooleanSupplier booleanSupplier, String message) { assertFalse(booleanSupplier, () -> message); } static void assertFalse(BooleanSupplier booleanSupplier, Supplier<String> messageSupplier) { if (booleanSupplier.getAsBoolean()) { fail(messageSupplier); } } }