
microsoft.vs.analytics.v3.myorg.entity.set.TestResults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-client-microsoft-analytics Show documentation
Show all versions of odata-client-microsoft-analytics Show documentation
Java client as template for Microsoft Analytics organisation endpoints
package microsoft.vs.analytics.v3.myorg.entity.set;
import com.github.davidmoten.odata.client.ContextPath;
import java.util.Optional;
import microsoft.vs.analytics.v3.model.entity.collection.request.TestResultCollectionRequest;
public final class TestResults extends TestResultCollectionRequest {
public TestResults(ContextPath contextPath) {
super(contextPath, Optional.empty());
}
public Projects project() {
return new Projects(contextPath.addSegment("Project"));
}
public TestRuns testRun() {
return new TestRuns(contextPath.addSegment("TestRun"));
}
public Tests test() {
return new Tests(contextPath.addSegment("Test"));
}
public PipelineRuns pipelineRun() {
return new PipelineRuns(contextPath.addSegment("PipelineRun"));
}
public Pipelines pipeline() {
return new Pipelines(contextPath.addSegment("Pipeline"));
}
public Branches branch() {
return new Branches(contextPath.addSegment("Branch"));
}
public Dates completedOn() {
return new Dates(contextPath.addSegment("CompletedOn"));
}
public Dates startedOn() {
return new Dates(contextPath.addSegment("StartedOn"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy