Uses of Class
org.junit.jupiter.params.provider.ArgumentsSource
-
Packages that use ArgumentsSource Package Description org.junit.jupiter.params JUnit Jupiter extension for parameterized tests.org.junit.jupiter.params.provider ArgumentsProviderimplementations and their correspondingArgumentsSourceannotations. -
-
Uses of ArgumentsSource in org.junit.jupiter.params
Methods in org.junit.jupiter.params that return types with arguments of type ArgumentsSource Modifier and Type Method Description private static java.util.List<ArgumentsSource>ParameterizedInvocationContextProvider. collectArgumentSources(ParameterizedDeclarationContext<?> declarationContext) -
Uses of ArgumentsSource in org.junit.jupiter.params.provider
Classes in org.junit.jupiter.params.provider with annotations of type ArgumentsSource Modifier and Type Class Description interfaceCsvFileSource@CsvFileSourceis a repeatableArgumentsSourcewhich is used to load comma-separated value (CSV) files from one or more classpathCsvFileSource.resources()orCsvFileSource.files().interfaceCsvSource@CsvSourceis a repeatableArgumentsSourcewhich reads comma-separated values (CSV) from one or more CSV records supplied via theCsvSource.value()attribute orCsvSource.textBlock()attribute.interfaceEmptySource@EmptySourceis anArgumentsSourcewhich provides a single empty argument to the annotated@ParameterizedClassor@ParameterizedTest.interfaceEnumSourceinterfaceFieldSource@FieldSourceis a repeatableArgumentsSourcewhich provides access to values of fields of the class in which this annotation is declared or from static fields in external classes referenced by fully qualified field name.interfaceMethodSource@MethodSourceis a repeatableArgumentsSourcewhich provides access to values returned from factory methods of the class in which this annotation is declared or from static factory methods in external classes referenced by fully qualified method name.interfaceNullSource@NullSourceis anArgumentsSourcewhich provides a singlenullargument to the annotated@ParameterizedClassor@ParameterizedTest.interfaceValueSource@ValueSourceis a repeatableArgumentsSourcewhich provides access to an array of literal values.Methods in org.junit.jupiter.params.provider that return ArgumentsSource Modifier and Type Method Description ArgumentsSource[]value()An array of one or more@ArgumentsSourceannotations.
-