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

net.thucydides.core.output.ResultsOutput Maven / Gradle / Ivy

package net.thucydides.core.output;

import jxl.read.biff.BiffException;
import jxl.write.WriteException;
import net.thucydides.core.matchers.SimpleValueMatcher;

import java.io.IOException;
import java.util.List;

public interface ResultsOutput {
    void recordResult(List columnValues,
                      SimpleValueMatcher... check) throws IOException, WriteException, BiffException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy