Package org.junit.jupiter.params
Class DefaultParameterInfo
- java.lang.Object
-
- org.junit.jupiter.params.DefaultParameterInfo
-
- All Implemented Interfaces:
ParameterInfo,ParameterInfo
class DefaultParameterInfo extends java.lang.Object implements ParameterInfo
- Since:
- 5.13
-
-
Field Summary
Fields Modifier and Type Field Description private ArgumentsAccessorargumentsprivate ParameterDeclarationsdeclarations-
Fields inherited from interface org.junit.jupiter.params.support.ParameterInfo
KEY, NAMESPACE
-
-
Constructor Summary
Constructors Constructor Description DefaultParameterInfo(ParameterDeclarations declarations, ArgumentsAccessor arguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArgumentsAccessorgetArguments(){@return the accessor to the arguments of the current invocation}ParameterDeclarationsgetDeclarations(){@return the declarations of all indexed parameters}(package private) voidstore(org.junit.jupiter.api.extension.ExtensionContext context)
-
-
-
Field Detail
-
declarations
private final ParameterDeclarations declarations
-
arguments
private final ArgumentsAccessor arguments
-
-
Constructor Detail
-
DefaultParameterInfo
DefaultParameterInfo(ParameterDeclarations declarations, ArgumentsAccessor arguments)
-
-
Method Detail
-
getDeclarations
public ParameterDeclarations getDeclarations()
Description copied from interface:ParameterInfo{@return the declarations of all indexed parameters}- Specified by:
getDeclarationsin interfaceParameterInfo
-
getArguments
public ArgumentsAccessor getArguments()
Description copied from interface:ParameterInfo{@return the accessor to the arguments of the current invocation}- Specified by:
getArgumentsin interfaceParameterInfo
-
store
void store(org.junit.jupiter.api.extension.ExtensionContext context)
-
-