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

cucumber.runner.TimeServiceEventBus Maven / Gradle / Ivy

There is a newer version: 7.22.0
Show newest version
package cucumber.runner;

public final class TimeServiceEventBus extends AbstractEventBus {
    private final TimeService stopWatch;

    public TimeServiceEventBus(TimeService stopWatch) {
        this.stopWatch = stopWatch;
    }

    @Override
    public Long getTime() {
        return stopWatch.time();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy