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

com.fathzer.chess.utils.test.ExcludeMethods Maven / Gradle / Ivy

There is a newer version: 0.0.2
Show newest version
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