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

io.qase.commons.writers.Writer Maven / Gradle / Ivy

package io.qase.commons.writers;

import io.qase.commons.QaseException;
import io.qase.commons.models.domain.Attachment;
import io.qase.commons.models.report.ReportResult;
import io.qase.commons.models.report.Run;

public interface Writer {
    void prepare() throws QaseException;

    void writeRun(Run run) throws QaseException;

    void writeResult(ReportResult result) throws QaseException;

    String writeAttachment(Attachment attachment);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy