use of com.buschmais.jqassistant.core.report.impl.CompositeReportPlugin in project jqa-core-framework by buschmais.
the class CompositeReportPluginTest method createReportWriter.
@Before
public void createReportWriter() {
Map<String, ReportPlugin> reportWriters = new HashMap<>();
reportWriters.put("writer1", reportWriter1);
reportWriters.put("writer2", reportWriter2);
compositeReportPlugin = new CompositeReportPlugin(reportWriters);
}
Aggregations