Skip to content

Instantly share code, notes, and snippets.

@sahajamit
Created February 23, 2016 08:27
Show Gist options
  • Save sahajamit/c637ff4ec195d74395cf to your computer and use it in GitHub Desktop.
Save sahajamit/c637ff4ec195d74395cf to your computer and use it in GitHub Desktop.
package com.cucumber.testng.examples;
import cucumber.api.CucumberOptions;
import cucumber.api.testng.AbstractTestNGCucumberTests;
/**
* Created by Amit Rawat on 2/23/2016.
*/
@CucumberOptions(features = "src/test/resources/com.cucumber.testng.examples/date_calculator1.feature", format = { "pretty",
"html:target/site/cucumber-pretty",
"json:target/cucumber1.json" })
public class RunCukesTest extends AbstractTestNGCucumberTests {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment