
com.fathzer.chess.utils.test.ExcludeMethods Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chess-test-utils Show documentation
Show all versions of chess-test-utils Show documentation
Some JUnit abstract test classes to test chess related libraries.
package com.fathzer.chess.utils.test;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import org.junit.jupiter.api.extension.ExtendWith;
/** An annotation to exclude some methods from a test class. */
@Target( TYPE )
@Retention(RUNTIME)
@ExtendWith(ExcludeMethodsCondition.class)
public @interface ExcludeMethods {
/** Gets the names of the methods to exclude.
* @return methods names
*/
String[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy