All Downloads are FREE. Search and download functionalities are using the official Maven repository.

junitparams.converters.ParamConverter Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
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 convert(Object param, String options) throws ConversionFailedException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy