Home | History | Annotate | Download | only in converters
      1 package junitparams.converters;
      2 
      3 /**
      4  *
      5  * Implement this interface if you want to convert params from some
      6  * representation to the type expected by your test method's parameter.
      7  *
      8  * <T> is the expected parameter type.
      9  *
     10  * @deprecated use {@link Converter}
     11  * @author Pawel Lipinski
     12  */
     13 @Deprecated
     14 public interface ParamConverter<T> {
     15     T convert(Object param, String options) throws ConversionFailedException;
     16 }
     17