Skip to content

Instantly share code, notes, and snippets.

@gsumit1
Last active June 13, 2021 16:57
Show Gist options
  • Save gsumit1/a6b01ef9609919cb0330a3cb37b931c2 to your computer and use it in GitHub Desktop.
Save gsumit1/a6b01ef9609919cb0330a3cb37b931c2 to your computer and use it in GitHub Desktop.
Use of the class GetTestStepName.java in the plugin.
package com.ctl.it.qa.sample.tests;
import net.serenitybdd.cucumber.CucumberWithSerenity;
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
@RunWith(CucumberWithSerenity.class)
@CucumberOptions(features = "src/test/resources/features/", plugin = { "pretty","com.ctl.it.qa.sample.tests.GetTestStepName" },tags = { "@Sample" })
public class CukesTest {
}
@gsumit1
Copy link
Author

gsumit1 commented Jun 13, 2021

update as public

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment