Skip Gauge动态测试

时间:2017-11-01 09:41:22

标签: java gauge getgauge

我正试图找到动态跳过Gauge执行的方法(忽略所有后续步骤但没有失败)。 例如,我有一些规范

Before test
===========================================================
* Before step

Scenario
-----------------------------------------------------------
* Step 1
* Step 2

他们的实施

@Step("Step 1")
public void step1() {
    if (ignoreCondition) {
        //how to skip test??????
    } else {
        doSomething();
    }
}

//if ignoreCondition==true this step must be ignored
@Step("Step 2")
public void step2() {
    doSomethingElse();
}

有没有办法这样做?

0 个答案:

没有答案