Class CommonCsvExportAggregator<T>

java.lang.Object
io.qameta.allure.CommonCsvExportAggregator<T>
Type Parameters:
T - type of result bean.
All Implemented Interfaces:
Aggregator, Extension

@Deprecated public abstract class CommonCsvExportAggregator<T> extends Object implements Aggregator
Deprecated.
for removal. Use CommonCsvExportAggregator2 instead.
Csv exporter extension. Can be used to process results in csv file
Since:
2.0
  • Constructor Details

    • CommonCsvExportAggregator

      public CommonCsvExportAggregator(String fileName, Class<T> type)
      Deprecated.
  • Method Details

    • aggregate

      public void aggregate(Configuration configuration, List<LaunchResults> launchesResults, Path outputDirectory) throws IOException
      Deprecated.
      Description copied from interface: Aggregator
      Process report data.
      Specified by:
      aggregate in interface Aggregator
      Parameters:
      configuration - the report configuration.
      launchesResults - all the parsed test results.
      outputDirectory - the report directory.
      Throws:
      IOException - if any occurs.
    • getData

      protected abstract List<T> getData(List<LaunchResults> launchesResults)
      Deprecated.