Package cucumber.api.testng

Examples of cucumber.api.testng.TestNGCucumberRunner


@CucumberOptions(format = "json:target/cucumber-report.json", strict = false)
public class RunCukesTest implements IHookable {

    @Test(groups = "cucumber", description = "Runs Cucumber Features", skipFailedInvocations = true)
    public void runCukes() throws IOException {
        new TestNGCucumberRunner(getClass()).runCukes();
    }
View Full Code Here

TOP

Related Classes of cucumber.api.testng.TestNGCucumberRunner

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.