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

cucumber.api.event.TestCaseFinished Maven / Gradle / Ivy

There is a newer version: 7.18.0
Show newest version
package cucumber.api.event;

import cucumber.api.Result;
import cucumber.api.TestCase;

public final class TestCaseFinished extends TimeStampedEvent {
    public final Result result;
    public final TestCase testCase;

    public TestCaseFinished(Long timeStamp, TestCase testCase, Result result) {
        super(timeStamp);
        this.testCase = testCase;
        this.result = result;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy