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

junitparams.converters.ConvertParam Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
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> value();

    /**
     * Options / settings to be used by the converter class
     */
    String options() default "";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy