io.qase.commons.client.ApiClient 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.client;
import io.qase.commons.QaseException;
import io.qase.commons.models.domain.TestResult;
import java.util.List;
public interface ApiClient {
Long createTestRun() throws QaseException;
void completeTestRun(Long runId) throws QaseException;
void uploadResults(Long runId, List results) throws QaseException;
List getTestCaseIdsForExecution() throws QaseException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy