io.probedock.client.annotations.ProbeTestClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of probe-dock-java Show documentation
Show all versions of probe-dock-java Show documentation
Base code to write Probe Dock clients in Java
The newest version!
package io.probedock.client.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* To apply some information across multiple tests
*
* @author Laurent Prevost
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ProbeTestClass {
/**
* Category
*/
String category() default "";
/**
* Tags to flag a test
*/
String[] tags() default {};
/**
* Tickets that refers to a ticketing system
*/
String[] tickets() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy