| Interface and Description |
|---|
| com.github.javatlacati.contiperf.ExecutionLogger
Replaced with
ReportModule. When using a predefined
ExecutionLogger, replace it with the corresponding ReportModule.
If the old version was
@Rule public ContiPerfRule = new ContiPerfRule(new ConsoleExecutionLogger());
the new version would be
@Rule public ContiPerfRule = new ContiPerfRule(new ConsoleReportModule());
Custom ExecutionLogger implementations still can be used by
wrapping them with a LoggerModuleAdapter. If the old
version was
@Rule public ContiPerfRule = new ContiPerfRule(new MyCustomLogger());
the new version would be
@Rule public ContiPerfRule = new ContiPerfRule(new LoggerModuleAdapter(new MyCustomLogger()));
|
| Class and Description |
|---|
| com.github.javatlacati.contiperf.log.ConsoleExecutionLogger
replaced with
ConsoleReportModule |
| com.github.javatlacati.contiperf.log.EmptyExecutionLogger
Replaced with
EmptyReportModule |
| com.github.javatlacati.contiperf.log.FileExecutionLogger
Replaced with
CSVSummaryReportModule |
| com.github.javatlacati.contiperf.log.ListExecutionLogger
replaced with
ListReportModule |
Copyright © 2019. All rights reserved.