io.qase.commons.models.domain.StepExecution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qase-java-commons Show documentation
Show all versions of qase-java-commons Show documentation
Qase TMS Reporter's common classes
The newest version!
package io.qase.commons.models.domain;
public class StepExecution {
public StepResultStatus status;
public long startTime;
public long endTime;
public int duration;
public StepExecution() {
this.startTime = System.currentTimeMillis();
this.status = StepResultStatus.UNTESTED;
}
public void stop() {
this.endTime = System.currentTimeMillis();
this.duration = (int) (this.endTime - this.startTime);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy