Home
last modified time | relevance | path

Searched refs:customParameters (Results 1 – 2 of 2) sorted by relevance

/external/junit-params/src/main/java/junitparams/internal/annotation/
DFrameworkMethodAnnotations.java40 CustomParameters customParameters = frameworkMethod.getAnnotation(CustomParameters.class); in getCustomParameters() local
41 if (customParameters != null) { in getCustomParameters()
42 return new CustomParametersDescriptor(customParameters); in getCustomParameters()
46 customParameters = annotation.annotationType().getAnnotation(CustomParameters.class); in getCustomParameters()
47 if (customParameters != null) { in getCustomParameters()
48 return new CustomParametersDescriptor(customParameters, annotation); in getCustomParameters()
DCustomParametersDescriptor.java14 public CustomParametersDescriptor(CustomParameters customParameters) { in CustomParametersDescriptor() argument
15 this(customParameters, customParameters); in CustomParametersDescriptor()
18 …public CustomParametersDescriptor(CustomParameters customParameters, Annotation customAnnotation) { in CustomParametersDescriptor() argument
19 this.provider = customParameters.provider(); in CustomParametersDescriptor()