Class ForkResultSummaryMessage
- java.lang.Object
-
- de.gebit.integrity.remoting.transport.messages.AbstractMessage
-
- de.gebit.integrity.remoting.transport.messages.ForkResultSummaryMessage
-
- All Implemented Interfaces:
Serializable
public class ForkResultSummaryMessage extends AbstractMessage
A summary over the results which is returned by a fork after executing a suite.- Author:
- Rene Schneider - initial API and implementation
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ForkResultSummaryMessage()The no-arg constructor, primarily used for serialization.ForkResultSummaryMessage(Integer aSuccessCount, Integer aFailureCount, Integer aTestExceptionCount, Integer aCallExceptionCount)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetCallExceptionCount()IntegergetFailureCount()IntegergetSuccessCount()IntegergetTestExceptionCount()
-
-
-
Constructor Detail
-
ForkResultSummaryMessage
public ForkResultSummaryMessage(Integer aSuccessCount, Integer aFailureCount, Integer aTestExceptionCount, Integer 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
-
ForkResultSummaryMessage
public ForkResultSummaryMessage()
The no-arg constructor, primarily used for serialization.
-
-