Interface CartesianParameterArgumentsProvider<T>


public interface CartesianParameterArgumentsProvider<T>
Provides arguments for a single parameter of a CartesianTest method. For more information, see the Cartesian product documentation.
  • Method Details

    • provideArguments

      Stream<T> provideArguments(ExtensionContext context, Parameter parameter) throws Exception
      Provides a Stream of arguments that needs to be used for a CartesianTest parameter.
      Parameters:
      context - the current extension context
      parameter - the parameter for which the arguments have to be provided
      Returns:
      a stream of arguments
      Throws:
      Exception