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

io.probedock.client.annotations.ProbeTestClass Maven / Gradle / Ivy

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