aki.Common.ClockRef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aki Show documentation
Show all versions of aki Show documentation
Desktop automated testing framework based on accessibility API.
The newest version!
package aki.Common;
import java.time.Clock;
import java.time.Duration;
public class ClockRef {
public static Clock clock = Clock.systemDefaultZone();
public static Duration setTimeout(long timeout) {
return Duration.ofMillis(timeout);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy