junitparams.converters.ConvertParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JUnitParams Show documentation
Show all versions of JUnitParams Show documentation
Better parameterised tests for JUnit
package junitparams.converters;
import java.lang.annotation.*;
/**
*
* Defines a converter which should be used to convert a parameter to expected
* type.
*
* @deprecated use {@link Param}
* @author Pawel Lipinski
*/
@Retention(RetentionPolicy.RUNTIME)
@Deprecated
public @interface ConvertParam {
Class extends ParamConverter>> value();
/**
* Options / settings to be used by the converter class
*/
String options() default "";
}