Skip to content

Instantly share code, notes, and snippets.

@ptcmariano
Created February 21, 2014 13:33
Show Gist options
  • Save ptcmariano/9134287 to your computer and use it in GitHub Desktop.
Save ptcmariano/9134287 to your computer and use it in GitHub Desktop.
Executar junit com a classe do Cucumber
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