我尝试在并行执行中使用 jUnit5 注释 @ParametrizedTest 运行我的测试,但它不起作用。
public class Simple {
@Inject
private WebSteps WebSteps;
@Inject
private DbSteps dbSteps;
private void func(String string) {
final Phone phone = Phone.of(string);
WebSteps.openLoginPage()
.sendCodeForPhone(phone)
.checkCode(dbSteps.getAuthCode(phone));
}
@ParameterizedTest
@ValueSource(strings = {"9025617555", "9367173268", "9725000875"})
@Ui
@Execution(CONCURRENT)
public void test(String phone) {
func(phone);
}}
三项测试中只有一项运行正常。
我使用 Gradle、jUnit 5.6.0、Atlas 作为 Selenium Wrapper (UI)