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

retest.annotation.SaveSuccessTestDataFiles Maven / Gradle / Ivy

Go to download

ReTest is a JUnit extension perform Randomic Test with ease and simplicity. It supports method parameters with Test annotation and much more.

The newest version!
package retest.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import retest.datafile.TestDataFiles;
import retest.datafile.formats.CSVTestDataFiles;

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface SaveSuccessTestDataFiles {

    String filePath() default "";

    Class formatClass() default CSVTestDataFiles.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy