All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java-pkmst.cucumber.cucumberTest.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
package {{basePackage}}.cucumber;

import org.junit.runner.RunWith;
import org.springframework.test.context.ActiveProfiles;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;

@RunWith(Cucumber.class)
@ActiveProfiles("test")
@CucumberOptions(format = { "pretty", "html:target/cucumber-html-report",
{{#resourcePaths}}
 "json:./report/{{path}}-report-json/{{path}}.json",
{{/resourcePaths}} })
public class {{serviceName}}Test {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy