import cucumber.api.CucumberOptions;
import cucumber.api.SnippetType;
import cucumber.api.junit.Cucumber;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(
plugin = {"pretty", "html:target/cucumber", "junit:target/junit_cucumber.xml", "json:target/cucumber.json"},
features = "src/test/resources/features",
tags = {"~@wip", "~@manual"},
monochrome = true,
snippets = SnippetType.CAMELCASE)
public class RunCukesTest {
}
--
Posting rules: http://cukes.info/posting-rules.html
---
You received this message because you are subscribed to the Google Groups "Cukes" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cukes+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi Paolo,When I add the snippet to my java class I get errors. What I was expecting was:@Given("^I am doing somthing$")public void iAmDoingSomething() throws Throwable {
// Write code here that turns the phrase above into concrete actions
throw new PendingException();
}Unless I am missing something...
I am using java 1.8cucumber 1.2.4mvn 3.3.9and i am running mvn clean test from the command line.I am on a windows 10 machine.am really confused!