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

de.qytera.qtaf.testrail.annotations.TestRail Maven / Gradle / Ivy

There is a newer version: 0.2.23
Show newest version
package de.qytera.qtaf.testrail.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * An annotation describing TestRail test cases.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface TestRail {
    /**
     * ID of the test case.
     *
     * @return test case ID
     */
    String[] caseId() default "";

    /**
     * ID of a test run. It's like a test plan ID.
     *
     * @return test run ID
     */
    String runId();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy