tech.kronicle.testutils.Timer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kronicle-test-utils Show documentation
Show all versions of kronicle-test-utils Show documentation
Kronicle tests-utils library that contains helper classes for testing Kronicle and its plugins
package tech.kronicle.testutils;
import java.time.Duration;
import java.time.Instant;
public class Timer {
private final Instant startTimestamp = Instant.now();
private Instant endTimestamp;
public void stop() {
endTimestamp = Instant.now();
}
public int getDurationInSeconds() {
return (int) Duration.between(startTimestamp, endTimestamp).toSeconds();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy