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

rest.RestCucumberOptions Maven / Gradle / Ivy

Go to download

Rest Cucumber allows you to attach a rest client for retrieval of Cucumber feature files and posting of Cucumber test results

There is a newer version: 1.3
Show newest version
package rest;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE })
public @interface RestCucumberOptions {
   /**
    * @return a new Rest Client
    */
   String restClient() default "";

   String path() default "";

   boolean uploadResultEnabled() default true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy