HomeSort by relevance Sort by last modified time
    Searched refs:ConvertParam (Results 1 - 3 of 3) sorted by null

  /external/junit-params/src/main/java/junitparams/converters/
ConvertParam.java 16 public @interface ConvertParam {
  /external/junit-params/src/test/java/junitparams/
ParamsConverterTest.java 18 import junitparams.converters.ConvertParam;
31 @ConvertParam(value = StringToDateConverter.class, options = "dd.MM.yyyy") Date date) {
39 @ConvertParam(value = StringToDateConverter.class, options = "dd.MM.yyyy") Date date,
40 @ConvertParam(LetterToNumberConverter.class) int num) {
49 @ConvertParam(value = StringToDateConverter.class, options = "dd.MM.yyyy") Date date) {
  /external/junit-params/src/main/java/junitparams/internal/
InvokeParameterisedMethod.java 11 import junitparams.converters.ConvertParam;
159 if (annotation.annotationType().isAssignableFrom(ConvertParam.class)) {
160 Class<? extends ParamConverter<?>> converterClass = ((ConvertParam) annotation).value();
161 String options = ((ConvertParam) annotation).options();

Completed in 199 milliseconds