Module org.junit.jupiter.params
Package org.junit.jupiter.params.aggregator
package org.junit.jupiter.params.aggregator
-
InterfaceDescription
ArgumentsAccessor
defines the public API for accessing arguments provided by anArgumentsProvider
for a single invocation of a@ParameterizedTest
method.ArgumentsAggregator
is an abstraction for the aggregation of arguments provided by anArgumentsProvider
for a single invocation of a@ParameterizedTest
method into a single object. -
ExceptionDescription
ArgumentAccessException
is an exception thrown by anArgumentsAccessor
if an error occurs while accessing or converting an argument.ArgumentsAggregationException
is an exception thrown by anArgumentsAggregator
when an error occurs while aggregating arguments. -
Annotation InterfaceDescription
@AggregateWith
is an annotation that allows one to specify anArgumentsAggregator
.