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

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

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

import cucumber.api.TestCase;

public final class TestCaseStarted extends TimeStampedEvent {
    public final TestCase testCase;

    public TestCaseStarted(Long timeStamp, TestCase testCase) {
        super(timeStamp);
        this.testCase = testCase;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy