Uses of Class
org.junit.platform.commons.util.PreconditionViolationException
-
Packages that use PreconditionViolationException Package Description org.junit.platform.commons.util Internal common utilities for JUnit.org.junit.platform.engine Public API for test engines.org.junit.platform.engine.discovery org.junit.platform.launcher Public API for configuring and launching test plans.org.junit.platform.launcher.core Core support classes for theLauncher
including theLauncherFactory
and theLauncherDiscoveryRequestBuilder
. -
-
Uses of PreconditionViolationException in org.junit.platform.commons.util
Methods in org.junit.platform.commons.util that throw PreconditionViolationException Modifier and Type Method Description static void
Preconditions. condition(boolean predicate, java.lang.String message)
Assert that the suppliedpredicate
istrue
.static void
Preconditions. condition(boolean predicate, java.util.function.Supplier<java.lang.String> messageSupplier)
Assert that the suppliedpredicate
istrue
.static <T> T[]
Preconditions. containsNoNullElements(T[] array, java.lang.String message)
Assert that the supplied array contains nonull
elements.static <T> T[]
Preconditions. containsNoNullElements(T[] array, java.util.function.Supplier<java.lang.String> messageSupplier)
Assert that the supplied array contains nonull
elements.static <T extends java.util.Collection<?>>
TPreconditions. containsNoNullElements(T collection, java.lang.String message)
Assert that the supplied collection contains nonull
elements.static <T extends java.util.Collection<?>>
TPreconditions. containsNoNullElements(T collection, java.util.function.Supplier<java.lang.String> messageSupplier)
Assert that the supplied collection contains nonull
elements.static java.lang.String
Preconditions. notBlank(java.lang.String str, java.lang.String message)
Assert that the suppliedString
is not blank.static java.lang.String
Preconditions. notBlank(java.lang.String str, java.util.function.Supplier<java.lang.String> messageSupplier)
Assert that the suppliedString
is not blank.static <T> T[]
Preconditions. notEmpty(T[] array, java.lang.String message)
Assert that the supplied array is neithernull
nor empty.static <T> T[]
Preconditions. notEmpty(T[] array, java.util.function.Supplier<java.lang.String> messageSupplier)
Assert that the supplied array is neithernull
nor empty.static <T extends java.util.Collection<?>>
TPreconditions. notEmpty(T collection, java.lang.String message)
Assert that the suppliedCollection
is neithernull
nor empty.static <T extends java.util.Collection<?>>
TPreconditions. notEmpty(T collection, java.util.function.Supplier<java.lang.String> messageSupplier)
Assert that the suppliedCollection
is neithernull
nor empty.static <T> T
Preconditions. notNull(T object, java.lang.String message)
Assert that the suppliedObject
is notnull
.static <T> T
Preconditions. notNull(T object, java.util.function.Supplier<java.lang.String> messageSupplier)
Assert that the suppliedObject
is notnull
. -
Uses of PreconditionViolationException in org.junit.platform.engine
Methods in org.junit.platform.engine that throw PreconditionViolationException Modifier and Type Method Description static TestTag
TestTag. create(java.lang.String name)
Create aTestTag
from the suppliedname
. -
Uses of PreconditionViolationException in org.junit.platform.engine.discovery
Methods in org.junit.platform.engine.discovery that throw PreconditionViolationException Modifier and Type Method Description static MethodSelector
DiscoverySelectors. selectMethod(java.lang.String fullyQualifiedMethodName)
Create aMethodSelector
for the supplied fully qualified method name. -
Uses of PreconditionViolationException in org.junit.platform.launcher
Methods in org.junit.platform.launcher that throw PreconditionViolationException Modifier and Type Method Description static PostDiscoveryFilter
TagFilter. excludeTags(java.lang.String... tagExpressions)
Create an exclude filter based on the supplied tag expressions.static PostDiscoveryFilter
TagFilter. excludeTags(java.util.List<java.lang.String> tagExpressions)
Create an exclude filter based on the supplied tag expressions.TestIdentifier
TestPlan. getTestIdentifier(java.lang.String uniqueId)
Get theTestIdentifier
with the supplied unique ID.static PostDiscoveryFilter
TagFilter. includeTags(java.lang.String... tagExpressions)
Create an include filter based on the supplied tag expressions.static PostDiscoveryFilter
TagFilter. includeTags(java.util.List<java.lang.String> tagExpressions)
Create an include filter based on the supplied tag expressions. -
Uses of PreconditionViolationException in org.junit.platform.launcher.core
Methods in org.junit.platform.launcher.core that throw PreconditionViolationException Modifier and Type Method Description static Launcher
LauncherFactory. create()
Factory method for creating a newLauncher
using dynamically detected test engines.
-