Created
February 19, 2014 20:20
-
-
Save eliasnogueira/9100683 to your computer and use it in GitHub Desktop.
Classe de Execução Cucumber
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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