Created
February 21, 2014 13:33
-
-
Save ptcmariano/9134287 to your computer and use it in GitHub Desktop.
Executar junit com a classe do 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
package br.com.catho.integration; | |
import cucumber.junit.Cucumber; | |
import org.junit.runner.RunWith; | |
/** | |
* | |
*/ | |
@RunWith(Cucumber.class) | |
@Cucumber.Options(features = "...") | |
public class ExecucaoCucumber { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment