org.gradle.performance.results.PerformanceTestResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.performance.results;
import java.util.List;
public abstract class PerformanceTestResult {
String testId;
String jvm;
String operatingSystem;
String host;
long startTime;
long endTime;
String vcsBranch;
List vcsCommits;
List previousTestIds;
String versionUnderTest;
String channel;
Throwable whereAmI;
public PerformanceTestResult() {
whereAmI = new Throwable();
}
protected static Checks whatToCheck() {
Checks result = Checks.ALL;
String override = System.getProperty("org.gradle.performance.execution.checks");
if (override != null) {
result = Checks.valueOf(override.toUpperCase());
}
return result;
}
public String getTestId() {
return testId;
}
public void setTestId(String testId) {
this.testId = testId;
}
public List getPreviousTestIds() {
return previousTestIds;
}
public void setPreviousTestIds(List previousTestIds) {
this.previousTestIds = previousTestIds;
}
public long getStartTime() {
return startTime;
}
public void setStartTime(long startTime) {
this.startTime = startTime;
}
public long getEndTime() {
return endTime;
}
public void setEndTime(long endTime) {
this.endTime = endTime;
}
public String getVersionUnderTest() {
return versionUnderTest;
}
public void setVersionUnderTest(String versionUnderTest) {
this.versionUnderTest = versionUnderTest;
}
public String getVcsBranch() {
return vcsBranch;
}
public void setVcsBranch(String vcsBranch) {
this.vcsBranch = vcsBranch;
}
public List getVcsCommits() {
return vcsCommits;
}
public void setVcsCommits(List vcsCommits) {
this.vcsCommits = vcsCommits;
}
public String getOperatingSystem() {
return operatingSystem;
}
public void setOperatingSystem(String operatingSystem) {
this.operatingSystem = operatingSystem;
}
public String getJvm() {
return jvm;
}
public void setJvm(String jvm) {
this.jvm = jvm;
}
public String getChannel() {
return channel;
}
public void setChannel(String channel) {
this.channel = channel;
}
public abstract void assertEveryBuildSucceeds();
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy