OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:customParameters
(Results
1 - 2
of
2
) 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
...]
Completed in 521 milliseconds