Interface AcceptanceTestFullReporter


public interface AcceptanceTestFullReporter
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Generate reports for a given acceptance test run.
    Return the format that this reporter generates, if it is a format that can be activated or deactivated via the output.formats configuration property.
    A name used to identify a given reporter.
    void
    setOutputDirectory(File outputDirectory)
    Define the output directory in which the reports will be written.
    void
    setQualifier(String qualifier)
    Optional.
  • Method Details

    • getName

      String getName()
      A name used to identify a given reporter.
    • getFormat

      Optional<OutcomeFormat> getFormat()
      Return the format that this reporter generates, if it is a format that can be activated or deactivated via the output.formats configuration property.
    • setOutputDirectory

      void setOutputDirectory(File outputDirectory)
      Define the output directory in which the reports will be written.
    • setQualifier

      void setQualifier(String qualifier)
      Optional. Used to distinguish the report generated from other similar reports.
    • generateReportsFor

      void generateReportsFor(TestOutcomes testOutcomes) throws IOException
      Generate reports for a given acceptance test run.
      Throws:
      IOException