
junitparams.converters.ParamConverter Maven / Gradle / Ivy
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.
*
* is the expected parameter type.
*
* @author Pawel Lipinski
*/
public interface ParamConverter {
T convert(Object param, String options) throws ConversionFailedException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy