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

io.qase.commons.reporters.InternalReporter Maven / Gradle / Ivy

The newest version!
package io.qase.commons.reporters;

import io.qase.commons.QaseException;
import io.qase.commons.models.domain.TestResult;

import java.util.List;

public interface InternalReporter {
    void startTestRun() throws QaseException;

    void completeTestRun() throws QaseException;

    void addResult(TestResult result) throws QaseException;

    void uploadResults() throws QaseException;

    List getResults();

    void setResults(List results);

    List getTestCaseIdsForExecution();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy