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

com.capitalone.dashboard.api.TestExecutionRestClient 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.TestExecution;

/**
 * This interface is a client for test execution
 */
public interface TestExecutionRestClient {
    Promise> getTests(TestExecution key);
    Promise setTests(TestExecution testExec);
    Promise removeTest(TestExecution testExecKey, TestExecution.Test testKey);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy