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

tech.kronicle.testutils.Timer Maven / Gradle / Ivy

Go to download

Kronicle tests-utils library that contains helper classes for testing Kronicle and its plugins

There is a newer version: 0.1.331
Show newest version
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