io.quarkus.test.scenarios.annotations.DisabledOnRHBQandWindows Maven / Gradle / Ivy
The newest version!
package io.quarkus.test.scenarios.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.junit.jupiter.api.extension.ExtendWith;
@Inherited
@Target({ ElementType.TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@ExtendWith(DisabledOnRHBQWindowsConditions.class)
public @interface DisabledOnRHBQandWindows {
/**
* Why is the annotated test class or test method disabled.
*/
String reason();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy