在我的自动化项目中,我有两个测试运行器:
@RunWith(Cucumber.class)
@CucumberOptions(features = ".",
plugin = {"json:target/json","rerun:rerun.txt","io.qameta.allure.cucumberjvm.AllureCucumberJvm"})
public class MainTest {
}
第二个,我使用此运行程序从以前的运行程序重新运行失败的场景
@RunWith(Cucumber.class)
@CucumberOptions(features = "@rerun.txt",
plugin = {"json:target/json","rerun:rerun.txt","io.qameta.allure.cucumberjvm.AllureCucumberJvm"})
public class FailedScenarioRerunTest {
}
我要先运行MainTest,然后再运行FailedScenarioTest,该怎么办?从理论上讲,测试应该以功能字母顺序运行,在本地计算机上完全一样,但是按照詹金斯的顺序不是字母顺序。任何人都必须处理这样的问题?