Package org.apache.maven.surefire.report
Class RunStatistics
- java.lang.Object
-
- org.apache.maven.surefire.report.RunStatistics
-
public class RunStatistics extends java.lang.Object
- Author:
- Kristian Rosenvold
-
-
Constructor Summary
Constructors Constructor Description RunStatistics()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(TestSetStats testSetStats)
int
getCompletedCount()
int
getErrors()
int
getFailures()
int
getFlakes()
org.apache.maven.surefire.suite.RunResult
getRunResult()
int
getSkipped()
java.lang.String
getSummary()
boolean
hadErrors()
boolean
hadFailures()
void
set(int completedCount, int errors, int failures, int skipped, int flakes)
-
-
-
Method Detail
-
hadFailures
public boolean hadFailures()
-
hadErrors
public boolean hadErrors()
-
getCompletedCount
public int getCompletedCount()
-
getSkipped
public int getSkipped()
-
getFailures
public int getFailures()
-
getErrors
public int getErrors()
-
getFlakes
public int getFlakes()
-
add
public void add(TestSetStats testSetStats)
-
set
public void set(int completedCount, int errors, int failures, int skipped, int flakes)
-
getRunResult
public org.apache.maven.surefire.suite.RunResult getRunResult()
-
getSummary
public java.lang.String getSummary()
-
-