Skip to content

Instantly share code, notes, and snippets.

@eliasnogueira
Created February 19, 2014 20:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eliasnogueira/9100683 to your computer and use it in GitHub Desktop.
Save eliasnogueira/9100683 to your computer and use it in GitHub Desktop.
Classe de Execução Cucumber
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@Cucumber.Options(format={"pretty", "html:target/cucumber"})
public class ExecucaoCucumber {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment