Created
February 23, 2016 08:27
-
-
Save sahajamit/c637ff4ec195d74395cf to your computer and use it in GitHub Desktop.
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 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