fit.decorator.util.DefaultTimer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
package fit.decorator.util;
public class DefaultTimer implements Timer {
private long startTime;
@Override
public long elapsed() {
return (System.currentTimeMillis() - startTime);
}
@Override
public void start() {
startTime = System.currentTimeMillis();
}
}