All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.qase.commons.client.ApiClient Maven / Gradle / Ivy

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