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

cucumber.api.Pending Maven / Gradle / Ivy

There is a newer version: 7.18.0
Show newest version
package cucumber.api;

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

/**
 * Any exception class annotated with this annotation will be treated as a "pending" exception.
 * That is - if the exception is thrown from a step definition or hook, the scenario's status will
 * be pending instead of failed.
 *
 * @see PendingException
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Pending {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy