blob: 4080ff020eca36dfafd66bcc449a6672bb358753 [file] [log] [blame]
package junitparams.converters;
/**
*
* Implement this interface if you want to convert params from some
* representation to the type expected by your test method's parameter.
*
* <T> is the expected parameter type.
*
* @deprecated use {@link Converter}
* @author Pawel Lipinski
*/
@Deprecated
public interface ParamConverter<T> {
T convert(Object param, String options) throws ConversionFailedException;
}