Class StatelessTestsetInfoFileReportEventListener<R extends TestSetReportEntry,S>
- java.lang.Object
-
- org.apache.maven.surefire.extensions.StatelessTestsetInfoFileReportEventListener<R,S>
-
- Type Parameters:
R
- report entry type, see WrappedReportEntry from module the maven-surefire-commonS
- test-set statistics, see TestSetStats from module the maven-surefire-common
- Direct Known Subclasses:
FileReporter
public abstract class StatelessTestsetInfoFileReportEventListener<R extends TestSetReportEntry,S> extends java.lang.Object
Extension listener for stateless file reporter of test-set. Signatures can be changed between major, minor versions or milestones.- Since:
- 3.0.0-M4
-
-
Field Summary
Fields Modifier and Type Field Description private java.nio.charset.Charset
encoding
private java.lang.String
reportNameSuffix
private java.io.File
reportsDirectory
-
Constructor Summary
Constructors Constructor Description StatelessTestsetInfoFileReportEventListener(java.io.File reportsDirectory, java.lang.String reportNameSuffix, java.nio.charset.Charset encoding)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected java.nio.charset.Charset
getEncoding()
protected java.lang.String
getReportNameSuffix()
protected java.io.File
getReportsDirectory()
abstract void
testSetCompleted(R report, S testSetStats, java.util.List<java.lang.String> testResults)
-
-
-
Method Detail
-
testSetCompleted
public abstract void testSetCompleted(R report, S testSetStats, java.util.List<java.lang.String> testResults)
-
getReportsDirectory
protected java.io.File getReportsDirectory()
-
getReportNameSuffix
protected java.lang.String getReportNameSuffix()
-
getEncoding
protected java.nio.charset.Charset getEncoding()
-
-