Skip to content

Instantly share code, notes, and snippets.

@giovanettid
Created March 31, 2015 19:48
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 giovanettid/ff0a7102126697cbc94a to your computer and use it in GitHub Desktop.
Save giovanettid/ff0a7102126697cbc94a to your computer and use it in GitHub Desktop.
package com.giovanetti.sample.batch.job.cucumber;
import com.giovanetti.support.batch.rule.BatchProperties;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(format = {"pretty", "html:target/cucumber-report"},
glue = "com.giovanetti.sample.batch.job.cucumber")
public class ExtractionFeatureTest {
@BeforeClass
public static void setupClass() {
BatchProperties.getDefault().create();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment