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

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

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

import cucumber.runtime.StepDefinition;

public class StepDefinedEvent extends TimeStampedEvent {
    public final StepDefinition stepDefinition;

    public StepDefinedEvent(Long time, Long timeMillis, StepDefinition stepDefinition) {
        super(time, timeMillis);
        this.stepDefinition = stepDefinition;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy