@API(status=EXPERIMENTAL,
since="5.2")
public interface 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.
An ArgumentsAggregator is applied to a method parameter of a
@ParameterizedTest method via the @AggregateWith
annotation.
The result of the aggregation will be passed as an argument to the
@ParameterizedTest method for the annotated parameter.
A common use case is the aggregation of multiple columns from a single line
in a CSV file into a domain object such as a Person, Address,
Order, etc.
Implementations must provide a no-args constructor and should not make any assumptions on when they are instantiated or how often they are called. Since instances may potentially be cached and called from different threads they should be thread-safe and designed to be used as singletons.
AggregateWith,
ArgumentsAccessor,
ParameterizedTest| Modifier and Type | Method and Description |
|---|---|
Object |
aggregateArguments(ArgumentsAccessor accessor,
ParameterContext context)
Aggregate the arguments contained in the supplied
accessor into a
single object. |
Object aggregateArguments(ArgumentsAccessor accessor, ParameterContext context) throws ArgumentsAggregationException
accessor into a
single object.accessor - an ArgumentsAccessor containing the arguments to be
aggregated; never nullcontext - the parameter context where the aggregated result is to be
supplied; never nullnull but only if the target
type is a reference typeArgumentsAggregationException - if an error occurs during the
aggregationCopyright © 2020. All rights reserved.