黄瓜获得测试跑步者类的名称

时间:2016-01-27 10:42:47

标签: java class cucumber runner

我正在尝试获取当前正在执行的跑步者类的名称,例如为:

@RunWith(Cucumber.class)
@CucumberOptions(
features={"Features"},
glue={"src.stepdefinition"},
monochrome=false
)
public class HelloWorld {
}

我需要在我的java代码中提供类名“HelloWorld”。有人知道怎么做吗? 我已经尝试了这个:http://ramblingsofaswtester.com/2013/04/15/cucumber-test-name-and-tags-on-feature/这肯定是朝着正确的方向发展,但它不包含运行者类名。

编辑:因为我使用Maven,我可以访问

System.getProperty("test")

包含带有类名的包名。

0 个答案:

没有答案