org.junit.jupiter.api.AssertFalse 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-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 v2.0 which
* accompanies this distribution and is available at
*
* http://www.eclipse.org/legal/epl-v20.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 {
///CLOVER:OFF
private AssertFalse() {
/* no-op */
}
///CLOVER:ON
static void assertFalse(boolean condition) {
assertFalse(() -> condition, () -> null);
}
static void assertFalse(boolean condition, String message) {
assertFalse(() -> condition, () -> message);
}
static void assertFalse(boolean condition, Supplier 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 messageSupplier) {
if (booleanSupplier.getAsBoolean()) {
fail(messageSupplier);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy