OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CustomParameters
(Results
1 - 7
of
7
) sorted by null
/external/junit-params/src/main/java/junitparams/internal/annotation/
CustomParametersDescriptor.java
5
import junitparams.custom.
CustomParameters
;
14
public CustomParametersDescriptor(
CustomParameters
customParameters
) {
15
this(
customParameters
,
customParameters
);
18
public CustomParametersDescriptor(
CustomParameters
customParameters
, Annotation customAnnotation) {
19
this.provider =
customParameters
.provider();
FrameworkMethodAnnotations.java
8
import junitparams.custom.
CustomParameters
;
40
CustomParameters
customParameters
= frameworkMethod.getAnnotation(
CustomParameters
.class);
41
if (
customParameters
!= null) {
42
return new CustomParametersDescriptor(
customParameters
);
46
customParameters
= annotation.annotationType().getAnnotation(
CustomParameters
.class);
47
if (
customParameters
!= null) {
48
return new CustomParametersDescriptor(
customParameters
, annotation)
[
all
...]
/external/junit-params/src/main/java/junitparams/custom/combined/
CombinedParameters.java
6
import junitparams.custom.
CustomParameters
;
9
@
CustomParameters
(provider = CombinedParametersProvider.class)
/external/junit-params/src/main/java/junitparams/
FileParameters.java
8
import junitparams.custom.
CustomParameters
;
21
@
CustomParameters
(provider = FileParametersProvider.class)
/external/junit-params/src/main/java/junitparams/custom/
CustomParameters.java
18
public @interface
CustomParameters
{
/external/junit-params/src/test/java/junitparams/custom/
CustomParametersProviderTest.java
17
@
CustomParameters
(provider = SimpleHelloProvider.class)
30
@
CustomParameters
(provider = CustomHelloProvider.class)
35
public static class SimpleHelloProvider implements ParametersProvider<
CustomParameters
> {
37
public void initialize(
CustomParameters
parametersAnnotation) {
/external/junit-params/
RELEASES.md
69
###
CustomParameters
77
@
CustomParameters
(provider = FileParametersProvider.class)
Completed in 1286 milliseconds