io.qase.commons.reporters.Reporter 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.reporters;
import io.qase.commons.QaseException;
import io.qase.commons.models.domain.TestResult;
import java.util.List;
public interface Reporter {
void startTestRun();
void completeTestRun();
void addResult(TestResult result);
void uploadResults();
List getTestCaseIdsForExecution();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy