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

com.capitalone.dashboard.api.TestRunRestClient Maven / Gradle / Ivy

There is a newer version: 3.1.4
Show newest version
package com.capitalone.dashboard.api;

import com.atlassian.util.concurrent.Promise;
import com.capitalone.dashboard.api.domain.*;

/**
 * This interface is a client for test run
 */
public interface TestRunRestClient {

    Promise getTestRun(String testExecKey, String testKey);
    Promise getTestRun(Long testRunId);
    Promise updateTestRun(TestRun testRunInput);
    Promise> getTestRuns(String testKey);


    Promise getStatus(Long testRunId);


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy