
cucumber.runner.TimeServiceEventBus Maven / Gradle / Ivy
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