Class ForkResultSummary
- java.lang.Object
-
- de.gebit.integrity.runner.forking.ForkResultSummary
-
public class ForkResultSummary extends Object
A summary over the results which is returned by a fork after executing a suite.- Author:
- Rene Schneider - initial API and implementation
-
-
Constructor Summary
Constructors Constructor Description ForkResultSummary(int aSuccessCount, int aFailureCount, int aTestExceptionCount, int aCallExceptionCount)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCallExceptionCount()intgetExceptionCount()intgetFailureCount()intgetSuccessCount()intgetTestExceptionCount()
-
-
-
Constructor Detail
-
ForkResultSummary
public ForkResultSummary(int aSuccessCount, int aFailureCount, int aTestExceptionCount, int aCallExceptionCount)Creates a new instance.- Parameters:
aSuccessCount- the number of successful testsaFailureCount- the number of failed testsaTestExceptionCount- the number of exceptions in testsaCallExceptionCount- the number of call exceptions in tests
-
-