Uses of Interface
org.antublue.test.engine.api.Parameter
-
-
Uses of Parameter in org.antublue.test.engine.api
Methods in org.antublue.test.engine.api that return Parameter Modifier and Type Method Description static ParameterParameter. of(boolean b)Method to create a Parameter containing a booleanstatic ParameterParameter. of(byte b)Method to create a Parameter containing as bytestatic ParameterParameter. of(char c)Method to create a Parameter containing as charstatic ParameterParameter. of(double d)Method to create a Parameter containing a doublestatic ParameterParameter. of(float f)Method to create a Parameter containing a floatstatic ParameterParameter. of(int i)Method to create a Parameter containing an intstatic ParameterParameter. of(long l)Method to create a Parameter containing a longstatic ParameterParameter. of(short s)Method to create a Parameter containing a shortstatic ParameterParameter. of(String value)Method to create a Parameter containing a Stringstatic ParameterParameter. of(String name, Object value)Method to create a Parameter object -
Uses of Parameter in org.antublue.test.engine.api.source
Methods in org.antublue.test.engine.api.source that return types with arguments of type Parameter Modifier and Type Method Description static Stream<Parameter>CsvSource. of(File file, Charset charset)Method to create a Stream of Parameters from a CSV filestatic Stream<Parameter>CsvSource. of(InputStream inputStream, Charset charset)Method to create a Stream of Parameters from a Reader formatted as CSVstatic Stream<Parameter>CsvSource. of(Reader reader)Method to create a Stream of Parameters from an InputStream formatted as CSVstatic Stream<Parameter>EnumSource. of(Class<? extends Enum> e)Method to create a Stream of Parameters from an Enumstatic Stream<Parameter>LineSource. of(File file, Charset charset)Method to get a Stream of Parameters from a Filestatic Stream<Parameter>LineSource. of(InputStream inputStream, Charset charset)Method to get a Stream of Parameters from an InputStreamstatic Stream<Parameter>LineSource. of(Reader reader)Method to get a Stream of Parameters from a Reader -
Uses of Parameter in org.antublue.test.engine.internal
Methods in org.antublue.test.engine.internal that return types with arguments of type Parameter Modifier and Type Method Description static List<Parameter>TestEngineReflectionUtils. getParameters(Class<?> clazz)Method to get a List of Parameters for a Class -
Uses of Parameter in org.antublue.test.engine.internal.api
Classes in org.antublue.test.engine.internal.api that implement Parameter Modifier and Type Class Description classParameterImplClass to implement a Parameter -
Uses of Parameter in org.antublue.test.engine.internal.descriptor
Methods in org.antublue.test.engine.internal.descriptor that return Parameter Modifier and Type Method Description ParameterMethodTestDescriptor. getTestParameter()ParameterParameterTestDescriptor. getTestParameter()Methods in org.antublue.test.engine.internal.descriptor with parameters of type Parameter Modifier and Type Method Description static MethodTestDescriptorTestDescriptorFactory. createMethodTestDescriptor(org.junit.platform.engine.UniqueId uniqueId, Class<?> clazz, Parameter parameter, Method method)Method to create a MethodTestDescriptorstatic ParameterTestDescriptorTestDescriptorFactory. createParameterTestDescriptor(org.junit.platform.engine.UniqueId uniqueId, Class<?> clazz, Parameter parameter)Method to create a ParameterTestDescriptorConstructors in org.antublue.test.engine.internal.descriptor with parameters of type Parameter Constructor Description MethodTestDescriptor(org.junit.platform.engine.UniqueId uniqueId, String displayName, Class<?> testClass, Parameter testParameter, Method testMethod)ParameterTestDescriptor(org.junit.platform.engine.UniqueId uniqueId, String displayName, Class<?> testClass, Parameter testParameter)
-