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

jp.vmi.selenium.selenese.inject.ExecuteTestCase Maven / Gradle / Ivy

package jp.vmi.selenium.selenese.inject;

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

import com.google.inject.BindingAnnotation;

import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;

/**
 * Annotates TestCase execution.
 * 

* Expected signature: {@code Result method(Selenese parent, Context context)} *

*/ @BindingAnnotation @Target({ METHOD }) @Retention(RUNTIME) public @interface ExecuteTestCase { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy