All Classes Interface Summary Class Summary Enum Summary Exception Summary Annotation Types Summary
Class |
Description |
AbstractTestDescriptor |
|
AbstractTestRuleAdapter |
|
AfterAll |
@AfterAll is used to signal that the annotated method should be
executed after all tests in the current test class.
|
AfterAllCallback |
AfterAllCallback defines the API for Extensions
that wish to provide additional behavior to test containers after all tests
have been invoked.
|
AfterEach |
@AfterEach is used to signal that the annotated method should be
executed after each @Test ,
@RepeatedTest , @ParameterizedTest , @TestFactory ,
and @TestTemplate method in the current test class.
|
AfterEachCallback |
AfterEachCallback defines the API for Extensions
that wish to provide additional behavior to tests after each test method
has been invoked.
|
AfterEachMethodAdapter |
Functional interface for registering an @AfterEach method
as a pseudo-extension.
|
AfterTestExecutionCallback |
AfterTestExecutionCallback defines the API for Extensions that wish to provide additional behavior to tests immediately
after each test has been executed.
|
AggregateWith |
|
AnnotationConsumer<A extends Annotation> |
|
AnnotationConsumerInitializer |
AnnotationConsumerInitializer is an internal helper class for
initializing AnnotationConsumers .
|
AnnotationSupport |
AnnotationSupport provides static utility methods for common tasks
regarding annotations — for example, checking if a class, method, or
field is annotated with a particular annotation; finding annotations on a
given class, method, or field; finding fields or methods annotated with
a particular annotation, etc.
|
AnnotationUtils |
|
ArgumentAccessException |
ArgumentAccessException is an exception thrown by an
ArgumentsAccessor if an error occurs while accessing
or converting an argument.
|
ArgumentConversionException |
ArgumentConversionException is an exception that can occur when an
object is converted to another object by an implementation of an
ArgumentConverter .
|
ArgumentConverter |
ArgumentConverter is an abstraction that allows an input object to
be converted to an instance of a different class.
|
Arguments |
Arguments is an abstraction that provides access to an array of
objects to be used for invoking a @ParameterizedTest method.
|
ArgumentsAccessor |
|
ArgumentsAggregationException |
ArgumentsAggregationException is an exception thrown by an
ArgumentsAggregator when an error occurs while aggregating
arguments.
|
ArgumentsAggregator |
ArgumentsAggregator is an abstraction for the aggregation of arguments
provided by an ArgumentsProvider for a single invocation of a
@ParameterizedTest method
into a single object.
|
ArgumentsProvider |
An ArgumentsProvider is responsible for providing a stream of arguments to be passed to a @ParameterizedTest
method.
|
ArgumentsSource |
|
ArgumentsSources |
@ArgumentsSources is a simple container for one or more
ArgumentsSource annotations.
|
Assertions |
Assertions is a collection of utility methods that support asserting
conditions in tests.
|
Assumptions |
Assumptions is a collection of utility methods that support
conditional test execution based on assumptions.
|
BeforeAll |
@BeforeAll is used to signal that the annotated method should be
executed before all tests in the current test class.
|
BeforeAllCallback |
BeforeAllCallback defines the API for Extensions
that wish to provide additional behavior to test containers before all tests
are invoked.
|
BeforeEach |
@BeforeEach is used to signal that the annotated method should be
executed before each @Test ,
@RepeatedTest , @ParameterizedTest , @TestFactory ,
and @TestTemplate method in the current test class.
|
BeforeEachCallback |
BeforeEachCallback defines the API for Extensions
that wish to provide additional behavior to tests before each test is invoked.
|
BeforeEachMethodAdapter |
Functional interface for registering a @BeforeEach method
as a pseudo-extension.
|
BeforeTestExecutionCallback |
BeforeTestExecutionCallback defines the API for Extensions that wish to provide additional behavior to tests immediately
before each test is executed.
|
BlacklistedExceptions |
Internal utilities for working with blacklisted exceptions.
|
CachingJupiterConfiguration |
|
ClassFilter |
Class-related predicate holder used by reflection utilities.
|
ClassLoaderUtils |
Collection of utilities for working with ClassLoader and associated tasks.
|
ClassNameFilter |
|
ClasspathResourceSelector |
A DiscoverySelector that selects the name of a classpath resource
so that TestEngines can load resources
from the classpath — for example, to load XML or JSON files from the classpath,
potentially within JARs.
|
ClasspathResourceSource |
|
ClasspathRootSelector |
A DiscoverySelector that selects a classpath root so that
TestEngines can search for class
files or resources within the physical classpath — for example, to
scan for test classes.
|
ClasspathScanningSupport |
Support utility methods for classpath scanning.
|
ClassSelector |
|
ClassSource |
|
ClassSupport |
ClassSupport provides static utility methods for common tasks
regarding classes — for example, generating a
comma-separated list of fully qualified class names for a set of supplied
classes.
|
ClassTestDescriptor |
|
ClassUtils |
Collection of utilities for working with classes .
|
CollectionUtils |
|
CommandLineOptions |
|
CommandLineOptionsParser |
|
CompositeTestSource |
A CompositeTestSource contains one or more TestSources .
|
ConditionEvaluationResult |
|
ConditionEvaluator |
|
ConfigurationParameters |
Configuration parameters that TestEngines may use to
influence test discovery and execution.
|
ConsoleLauncher |
The ConsoleLauncher is a stand-alone application for launching the
JUnit Platform from the console.
|
ConsoleLauncherExecutionResult |
|
ConsoleTestExecutor |
|
Constants |
|
ConvertWith |
@ConvertWith is an annotation that allows one to specify an explicit
ArgumentConverter .
|
CsvFileSource |
@CsvFileSource is an ArgumentsSource which is used to load
comma-separated value (CSV) files from one or more classpath resources .
|
CsvParsingException |
Thrown if an error is encountered while parsing CSV input.
|
CsvSource |
|
DefaultArgumentConverter |
|
DefaultArgumentsAccessor |
|
DefaultJupiterConfiguration |
|
DefaultParallelExecutionConfigurationStrategy |
Default implementations of configuration strategies for parallel test
execution.
|
DefaultTestInstances |
|
Details |
|
DirectorySelector |
|
DirectorySource |
|
Disabled |
@Disabled is used to signal that the annotated test class or
test method is currently disabled and should not be executed.
|
DisabledIf |
@DisabledIf is used to determine whether the annotated test class or
test method is disabled by evaluating a script.
|
DisabledIfEnvironmentVariable |
@DisabledIfEnvironmentVariable is used to signal that the annotated test
class or test method is disabled if the value of the specified
environment variable matches the specified
regular expression.
|
DisabledIfSystemProperty |
@DisabledIfSystemProperty is used to signal that the annotated test
class or test method is disabled if the value of the specified
system property matches the specified
regular expression.
|
DisabledOnJre |
@DisabledOnJre is used to signal that the annotated test class or
test method is disabled on one or more specified Java
Runtime Environment (JRE) versions.
|
DisabledOnOs |
@DisabledOnOs is used to signal that the annotated test class or
test method is disabled on one or more specified
operating systems.
|
DiscoveryFilter<T> |
A DiscoveryFilter is applied during test discovery to determine if
a given container or test should be included in the test plan.
|
DiscoverySelector |
A selector defines what a TestEngine can use to discover tests
— for example, the name of a Java class, the path to a file or
directory, etc.
|
DiscoverySelectorResolver |
DiscoverySelectorResolver resolves TestDescriptors
for containers and tests selected by DiscoverySelectors with the help of the
JavaElementsResolver .
|
DiscoverySelectors |
|
DisplayName |
@DisplayName is used to declare a custom display
name for the annotated test class or test method.
|
DisplayNameGeneration |
@DisplayNameGeneration is used to declare a custom display name
generator for the annotated test class.
|
DisplayNameGenerator |
DisplayNameGenerator defines the SPI for generating display
names programmatically.
|
DisplayNameGenerator.ReplaceUnderscores |
Replace all underscore characters with spaces.
|
DisplayNameGenerator.Standard |
Standard display name generator.
|
DynamicContainer |
A DynamicContainer is a container generated at runtime.
|
DynamicDescendantFilter |
|
DynamicNode |
DynamicNode serves as the abstract base class for a container or a
test case generated at runtime.
|
DynamicTest |
A DynamicTest is a test case generated at runtime.
|
EmptySource |
@EmptySource is an ArgumentsSource which provides a single
empty argument to the annotated @ParameterizedTest method.
|
EnabledIf |
@EnabledIf is used to determine whether the annotated test class or
test method is enabled by evaluating a script.
|
EnabledIfEnvironmentVariable |
@EnabledIfEnvironmentVariable is used to signal that the annotated test
class or test method is only enabled if the value of the specified
environment variable matches the specified
regular expression.
|
EnabledIfSystemProperty |
@EnabledIfSystemProperty is used to signal that the annotated test
class or test method is only enabled if the value of the specified
system property matches the specified
regular expression.
|
EnabledOnJre |
@EnabledOnJre is used to signal that the annotated test class or
test method is only enabled on one or more specified Java
Runtime Environment (JRE) versions.
|
EnabledOnOs |
@EnabledOnOs is used to signal that the annotated test class or
test method is only enabled on one or more specified
operating systems.
|
EnableJUnit4MigrationSupport |
EnableJUnit4MigrationSupport is a class-level annotation that
enables all JUnit 4 migration support within JUnit Jupiter.
|
EnableRuleMigrationSupport |
This class-level annotation enables native JUnit 4 rule support
within JUnit Jupiter.
|
EngineDescriptor |
|
EngineDiscoveryRequest |
EngineDiscoveryRequest provides a TestEngine access to the
information necessary to discover tests and containers.
|
EngineExecutionContext |
Marker interface for an execution context used by a concrete implementation
of HierarchicalTestEngine and its collaborators.
|
EngineExecutionListener |
Listener to be notified of test execution events by
test engines.
|
EngineExecutionResults |
EngineExecutionResults provides a fluent API for processing the
results of executing a test plan on the JUnit Platform for a given
TestEngine .
|
EngineFilter |
An EngineFilter is applied to all TestEngines
before they are used.
|
EngineTestKit |
EngineTestKit provides support for executing a test plan for a given
TestEngine and then accessing the results via
a fluent API to verify the expected results.
|
EngineTestKit.Builder |
|
EnumSource |
|
EnumSource.Mode |
Enumeration of modes for selecting enum constants by name.
|
Event |
Event represents a single event fired during execution of
a test plan on the JUnit Platform.
|
EventConditions |
|
Events |
Events is a facade that provides a fluent API for working with
events.
|
EventStatistics |
EventStatistics provides a fluent API for asserting statistics
for events.
|
EventType |
Enumeration of the different possible Event types.
|
ExceptionUtils |
Collection of utilities for working with exceptions.
|
ExcludeClassNamePatterns |
@ExcludeClassNamePatterns specifies regular expressions that are used
to match against fully qualified class names when running a test suite on the
JUnit Platform.
|
ExcludeEngines |
@ExcludeEngines specifies the IDs of
TestEngines to be excluded
when running a test suite on the JUnit Platform.
|
ExcludePackages |
@ExcludePackages specifies the packages to be
excluded when running a test suite on the JUnit Platform.
|
ExcludeTags |
|
ExclusiveResource |
An exclusive resource identified by a key with a lock mode that is used to
synchronize access to shared resources when executing nodes in parallel.
|
ExclusiveResource.LockMode |
|
Executable |
Executable is a functional interface that can be used to
implement any generic block of code that potentially throws a
Throwable .
|
ExecutableInvoker |
ExecutableInvoker encapsulates the invocation of a
Executable (i.e., method or constructor),
including support for dynamic resolution of method parameters via
ParameterResolvers .
|
Execution |
@Execution is used to configure the parallel execution
mode of a test class or test method.
|
Execution |
Execution encapsulates metadata for the execution of a single
TestDescriptor .
|
ExecutionCondition |
ExecutionCondition defines the Extension API for
programmatic, conditional test execution.
|
ExecutionMode |
Supported execution modes for parallel test execution.
|
ExecutionRequest |
Provides a single TestEngine access to the information necessary to
execute its tests.
|
Executions |
Executions is a facade that provides a fluent API for working with
executions.
|
ExpectedExceptionAdapter |
|
ExpectedExceptionSupport |
|
ExtendWith |
@ExtendWith is a repeatable annotation
that is used to register extensions for the
annotated test class or test method.
|
Extension |
Marker interface for all extensions.
|
ExtensionConfigurationException |
Thrown if an error is encountered regarding the configuration of an
extension.
|
ExtensionContext |
ExtensionContext encapsulates the context in which the
current test or container is being executed.
|
ExtensionContext.Namespace |
|
ExtensionContext.Store |
Store provides methods for extensions to save and retrieve data.
|
ExtensionContext.Store.CloseableResource |
|
ExtensionContextException |
|
ExtensionRegistry |
An ExtensionRegistry holds all registered extensions (i.e.
|
Extensions |
@Extensions is a container for one or more @ExtendWith
declarations.
|
ExtensionValuesStore |
ExtensionValuesStore is used inside implementations of
ExtensionContext to store and retrieve values.
|
ExternalResourceAdapter |
|
ExternalResourceSupport |
This Extension provides native support for subclasses of
the ExternalResource rule from JUnit 4.
|
FilePosition |
Position inside a file represented by line and
column numbers.
|
FileSelector |
|
FileSource |
|
FileSystemSource |
|
Filter<T> |
A Filter can be applied to determine if an object should be
included or excluded in a result set.
|
Filterable |
Filterable is implemented by
TestDescriptors that may
register dynamic tests during execution and support selective test execution.
|
FilterResult |
The result of applying a Filter .
|
ForkJoinPoolHierarchicalTestExecutorService |
|
FunctionUtils |
|
GenericBeforeAndAfterAdvice |
|
HierarchicalTestEngine<C extends EngineExecutionContext> |
Abstract base class for all TestEngine implementations that wish
to organize test suites hierarchically based on the Node abstraction.
|
HierarchicalTestExecutorService |
|
HierarchicalTestExecutorService.TestTask |
An executable task that represents a single test or container.
|
HierarchyTraversalMode |
Modes in which a hierarchy can be traversed — for example, when
searching for methods or fields within a class hierarchy.
|
IgnoreCondition |
|
IncludeClassNamePatterns |
@IncludeClassNamePatterns specifies regular expressions that are used
to match against fully qualified class names when running a test suite on the
JUnit Platform.
|
IncludeEngines |
@IncludeEngines specifies the IDs of
TestEngines to be included
when running a test suite on the JUnit Platform.
|
IncludePackages |
@IncludePackages specifies the packages to be
included when running a test suite on the JUnit Platform.
|
IncludeTags |
|
IsInnerClass |
Test if a class is a non-private inner class (i.e., a non-static nested class).
|
IsNestedTestClass |
Test if a class is a JUnit Jupiter @Nested test class.
|
IsPotentialTestContainer |
Test if a class is a potential top-level JUnit Jupiter test container, even if
it does not contain tests.
|
IsTestClassWithTests |
Test if a class is a JUnit Jupiter test class containing executable tests,
test factories, test templates, or nested tests.
|
IsTestFactoryMethod |
|
IsTestMethod |
Test if a method is a JUnit Jupiter @Test method.
|
IsTestTemplateMethod |
|
JavaTimeConversionPattern |
@JavaTimeConversionPattern is an annotation that allows a date/time
conversion pattern to be specified on a parameter of a
@ParameterizedTest method.
|
JRE |
Enumeration of Java Runtime Environment (JRE) versions.
|
JUnitException |
|
JUnitPlatform |
JUnit 4 based Runner which runs tests on the JUnit Platform in a
JUnit 4 environment.
|
JupiterConfiguration |
|
JupiterEngineDescriptor |
|
JupiterEngineExecutionContext |
|
JupiterEngineExecutionContext.Builder |
|
JupiterTestDescriptor |
|
JupiterTestEngine |
|
JupiterThrowableCollectorFactory |
|
Launcher |
The Launcher API is the main entry point for client code that
wishes to discover and execute tests using one or more
test engines.
|
LauncherConfig |
|
LauncherConfig.Builder |
|
LauncherConstants |
Collection of constants related to Launcher .
|
LauncherDiscoveryRequest |
|
LauncherDiscoveryRequestBuilder |
|
LauncherFactory |
|
LegacyReportingUtils |
Utility methods for dealing with legacy reporting infrastructure, such as
reporting systems built on the Ant-based XML reporting format for JUnit 4.
|
LegacyXmlReportGeneratingListener |
|
Logger |
The Logger API serves as a simple logging facade for
java.util.logging (JUL).
|
LoggerFactory |
Factory for the Logger facade for JUL.
|
LoggingListener |
|
LogRecordListener |
LogRecordListener is only intended for testing purposes within
JUnit's own test suite.
|
MethodBasedTestDescriptor |
|
MethodDescriptor |
|
MethodOrderer |
MethodOrderer defines the API for ordering the test methods
in a given test class.
|
MethodOrderer.Alphanumeric |
|
MethodOrderer.OrderAnnotation |
MethodOrderer that sorts methods based on the @Order
annotation.
|
MethodOrderer.Random |
MethodOrderer that orders methods pseudo-randomly and allows for
concurrent execution by default.
|
MethodOrdererContext |
MethodOrdererContext encapsulates the context in which
a MethodOrderer will be invoked.
|
MethodSelector |
A DiscoverySelector that selects a Method or a combination of
class name, method name, and parameter types so that
TestEngines can discover tests
or containers based on methods.
|
MethodSource |
@MethodSource is an ArgumentsSource which provides access
to values returned from factory methods of the class in
which this annotation is declared or from static factory methods in external
classes referenced by fully qualified method name.
|
MethodSource |
|
ModifierSupport |
ModifierSupport provides static utility methods for working with
class and member modifiers —
for example, to determine if a class or member is declared as
public , private , abstract , static , etc.
|
ModuleSelector |
|
ModuleUtils |
Collection of utilities for working with java.lang.Module
and friends.
|
NamespaceAwareStore |
|
Nested |
@Nested is used to signal that the annotated class is a nested,
non-static test class (i.e., an inner class) that can share
setup and state with an instance of its enclosing class.
|
NestedClassTestDescriptor |
TestDescriptor for tests based on nested (but not static) Java classes.
|
Node<C extends EngineExecutionContext> |
A node within the execution hierarchy.
|
Node.DynamicTestExecutor |
Executor for additional, dynamic test descriptors discovered during
execution of a Node .
|
Node.ExecutionMode |
Supported execution modes for parallel execution.
|
Node.Invocation<C extends EngineExecutionContext> |
Represents an invocation that runs with the supplied context.
|
Node.SkipResult |
The result of determining whether the execution of a given context
should be skipped.
|
NullAndEmptySource |
|
NullSource |
@NullSource is an ArgumentsSource which provides a single
null argument to the annotated @ParameterizedTest method.
|
OpenTest4JAwareThrowableCollector |
|
Order |
@Order is an annotation that is used to configure the
order in which the annotated element (i.e., field or
method) should be evaluated or executed relative to other elements of the
same category.
|
OS |
Enumeration of common operating systems used for testing Java applications.
|
PackageNameFilter |
|
PackageSelector |
|
PackageSource |
|
PackageUtils |
Collection of utilities for working with packages.
|
ParallelExecutionConfiguration |
Configuration to use for parallel test execution.
|
ParallelExecutionConfigurationStrategy |
A strategy to use for configuring parallel test execution.
|
ParameterContext |
ParameterContext encapsulates the context in which an
Executable will be invoked for a given
Parameter .
|
ParameterizedTest |
@ParameterizedTest is used to signal that the annotated method is a
parameterized test method.
|
ParameterResolutionException |
Thrown if an error is encountered in the configuration or execution of a
ParameterResolver .
|
ParameterResolver |
ParameterResolver defines the API for Extensions
that wish to dynamically resolve arguments for parameters
at runtime.
|
ParseResult |
|
PicocliCommandLineOptionsParser |
|
PostDiscoveryFilter |
|
Preconditions |
Collection of utilities for asserting preconditions for method and
constructor arguments.
|
PreconditionViolationException |
Thrown if a precondition is violated.
|
PrefixedConfigurationParameters |
|
ReflectionSupport |
ReflectionSupport provides static utility methods for common
reflection tasks — for example, scanning for classes in the class-path
or module-path, loading classes, finding methods, invoking methods, etc.
|
ReflectionUtils |
Collection of utilities for working with the Java reflection APIs.
|
ReflectionUtils.HierarchyTraversalMode |
Modes in which a hierarchy can be traversed — for example, when
searching for methods or fields within a class hierarchy.
|
RegisterExtension |
@RegisterExtension is used to register an Extension via a
field in a test class.
|
RepeatedTest |
|
RepetitionInfo |
RepetitionInfo is used to inject information about the current
repetition of a repeated test into @RepeatedTest , @BeforeEach ,
and @AfterEach methods.
|
ReportEntry |
ReportEntry encapsulates a time-stamped map of String -based
key-value pairs to be published to the reporting infrastructure.
|
ResourceAccessMode |
The access mode required by a test class or method for a given resource.
|
ResourceLock |
@ResourceLock is used to declare that the annotated test class or test
method requires access to a shared resource identified by a key.
|
ResourceLock |
A lock for a one or more resources.
|
ResourceLocks |
@ResourceLocks is a container for one or more
@ResourceLock declarations.
|
Resources |
Common resource names for synchronizing test execution.
|
RunnerDecorator |
|
RunnerExecutor |
|
RunnerTestDescriptor |
|
SameThreadHierarchicalTestExecutorService |
|
Script |
Script data class.
|
ScriptAccessor |
Used to access named properties without exposing direct access to the
underlying source.
|
ScriptAccessor.ConfigurationParameterAccessor |
|
ScriptAccessor.EnvironmentVariableAccessor |
|
ScriptAccessor.SystemPropertyAccessor |
|
ScriptEvaluationException |
|
ScriptExecutionManager |
Entry point for script execution support.
|
SelectClasses |
@SelectClasses specifies the classes to select when running
a test suite on the JUnit Platform.
|
SelectPackages |
@SelectPackages specifies the names of packages to select
when running a test suite on the JUnit Platform.
|
SimpleArgumentConverter |
SimpleArgumentConverter is an abstract base class for ArgumentConverter
implementations.
|
SingleTestExecutor |
Deprecated.
|
SingleTestExecutor.Executable |
|
StringUtils |
|
SuiteDisplayName |
@SuiteDisplayName is used to declare a custom
display name for the annotated test class that is executed as a test suite
on the JUnit Platform.
|
SummaryGeneratingListener |
|
Tag |
@Tag is a repeatable annotation that is
used to declare a tag for the annotated test class or test method.
|
TagExpression |
A tag expression can be evaluated against a collection of
tags to determine if they match the expression.
|
TagFilter |
Factory methods for creating PostDiscoveryFilters
based on included and excluded tags or tag expressions.
|
Tags |
@Tags is a container for one or more @Tag declarations.
|
TempDir |
@TempDir can be used to annotate a field in a test class or a
parameter in a lifecycle method or test method of type Path or
File that should be resolved into a temporary directory.
|
TerminationInfo |
TerminationInfo is a union type that allows propagation of terminated
container/test state, supporting either the reason if the container/test
was skipped or the TestExecutionResult if the container/test was executed.
|
Test |
@Test is used to signal that the annotated method is a
test method.
|
Testable |
@Testable is used to signal to IDEs and tooling vendors that the
annotated or meta-annotated element is testable.
|
TestDescriptor |
Mutable descriptor for a test or container that has been discovered by a
TestEngine .
|
TestDescriptor.Type |
|
TestDescriptor.Visitor |
|
TestEngine |
A TestEngine facilitates discovery and execution of
tests for a particular programming model.
|
TestExecutionExceptionHandler |
TestExecutionExceptionHandler defines the API for Extensions that wish to handle exceptions thrown during test execution.
|
TestExecutionListener |
Register a concrete implementation of this interface with a Launcher
to be notified of events that occur during test execution.
|
TestExecutionResult |
TestExecutionResult encapsulates the result of executing a single test
or container.
|
TestExecutionResult.Status |
Status of executing a single test or container.
|
TestExecutionResultConditions |
|
TestExecutionSummary |
Summary of test plan execution.
|
TestExecutionSummary.Failure |
Failure of a test or container.
|
TestFactory |
@TestFactory is used to signal that the annotated method is a
test factory method.
|
TestFactoryTestDescriptor |
|
TestIdentifier |
Immutable data transfer object that represents a test or container which is
usually part of a TestPlan .
|
TestInfo |
TestInfo is used to inject information about the current test or
container into to @Test , @RepeatedTest ,
@ParameterizedTest , @TestFactory , @BeforeEach ,
@AfterEach , @BeforeAll , and @AfterAll methods.
|
TestInstance |
@TestInstance is a type-level annotation that is used to configure
the lifecycle of test instances for the annotated
test class or test interface.
|
TestInstance.Lifecycle |
Enumeration of test instance lifecycle modes.
|
TestInstanceFactory |
TestInstanceFactory defines the API for Extensions that wish to create test instances.
|
TestInstanceFactoryContext |
|
TestInstanceLifecycleUtils |
Collection of utilities for retrieving the test instance lifecycle mode.
|
TestInstancePostProcessor |
TestInstancePostProcessor defines the API for Extensions that wish to post-process test instances.
|
TestInstances |
TestInstances encapsulates the test instances of a test.
|
TestInstancesProvider |
|
TestInstantiationException |
|
TestMethodOrder |
@TestMethodOrder is a type-level annotation that is used to configure
a MethodOrderer for the test methods of the annotated
test class or test interface.
|
TestMethodTestDescriptor |
|
TestPlan |
TestPlan describes the tree of tests and containers as discovered
by a Launcher .
|
TestReporter |
|
TestRuleAnnotatedField |
|
TestRuleAnnotatedMember |
|
TestRuleAnnotatedMethod |
|
TestSource |
Representation of the source of a test or container used to navigate to
its location by IDEs and build tools.
|
TestTag |
Immutable value object for a tag that is assigned to a test or
container.
|
TestTemplate |
@TestTemplate is used to signal that the annotated method is a
test template method.
|
TestTemplateInvocationContext |
TestTemplateInvocationContext represents the context of a
single invocation of a test
template.
|
TestTemplateInvocationContextProvider |
TestTemplateInvocationContextProvider defines the API for
Extensions that wish to provide one or multiple contexts
for the invocation of a
@TestTemplate method.
|
TestTemplateInvocationTestDescriptor |
|
TestTemplateTestDescriptor |
|
TestWatcher |
TestWatcher defines the API for Extensions that
wish to process test results.
|
Theme |
|
ThrowableCollector |
Simple component that can be used to collect one or more instances of
Throwable .
|
ThrowableCollector.Executable |
Functional interface for an executable block of code that may throw a
Throwable .
|
ThrowableCollector.Factory |
Factory for ThrowableCollector instances.
|
ThrowingConsumer<T> |
ThrowingConsumer is a functional interface that can be used to
implement any generic block of code that consumes an argument and
potentially throws a Throwable .
|
ThrowingSupplier<T> |
ThrowingSupplier is a functional interface that can be used to
implement any generic block of code that returns an object and
potentially throws a Throwable .
|
ToStringBuilder |
Simple builder for generating strings in custom implementations of
toString() .
|
Try<V> |
A container object which may either contain a nullable value in case of
success or an exception in case of failure.
|
Try.Transformer<S,T> |
A transformer for values of type S to type T .
|
UniqueId |
UniqueId encapsulates the creation, parsing, and display of unique IDs
for TestDescriptors .
|
UniqueId.Segment |
A segment of a UniqueId comprises a type and a
value.
|
UniqueIdReader |
|
UniqueIdSelector |
|
UniqueIdStringifier |
|
UriSelector |
|
UriSource |
|
UseTechnicalNames |
@UseTechnicalNames specifies that technical names should be
used instead of display names when running a test suite on the
JUnit Platform.
|
ValueSource |
@ValueSource is an ArgumentsSource which provides access to
an array of literal values.
|
VerifierAdapter |
|
VerifierSupport |
This Extension provides native support for subclasses of
the Verifier rule from JUnit 4.
|
VintageDiscoverer |
|
VintageTestDescriptor |
|
VintageTestEngine |
|