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

net.thucydides.junit.annotations.TestData Maven / Gradle / Ivy

There is a newer version: 4.2.9
Show newest version
package net.thucydides.junit.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotation for a method which provides parameters to be injected into the
 * test class constructor by Parameterized
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface TestData {
    String columnNames() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy