All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.thucydides.core.steps.CurrentTestResult Maven / Gradle / Ivy

There is a newer version: 4.2.8
Show newest version
package net.thucydides.core.steps;

import net.thucydides.model.domain.TestOutcome;
import net.thucydides.model.domain.TestResult;

public class CurrentTestResult {
    public static TestResult forTestOutcome(TestOutcome testOutcome, int currentExample) {
        if (isCucumber(testOutcome) && testOutcome.isDataDriven() && !testOutcome.getTestSteps().isEmpty()) {
            if (currentExample > 0) {
                if (testOutcome.getTestSteps().size() >= currentExample) {
                    return testOutcome.getStepResult(currentExample - 1);
                    //return testOutcome.fromStep(currentExample - 1).getResult();
                } else {
                    return TestResult.UNDEFINED;
                }
            } else {
                return testOutcome.getStepResult(0);
                // return testOutcome.fromStep(0).getResult();
            }
        } else {
            return testOutcome.getResult();
        }
    }

    public static boolean isCucumber(TestOutcome testOutcome) {
        return "Cucumber".equalsIgnoreCase(testOutcome.getTestSource());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy