![JAR search and dependency download from the Maven repository](/logo.png)
de.tsl2.nano.autotest.creator.FunctionTester Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tsl2.nano.autotest Show documentation
Show all versions of tsl2.nano.autotest Show documentation
Generates unit tests from code or annotated methods
The newest version!
package de.tsl2.nano.autotest.creator;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* types of function tests (like expectations, inversefunction, ...) to be created
* @author Tom
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE })
public @interface FunctionTester {
Class extends AFunctionTester>>[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy