Class ForkResultSummaryMessage

  • All Implemented Interfaces:
    java.io.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 Detail

      • ForkResultSummaryMessage

        public ForkResultSummaryMessage​(java.lang.Integer aSuccessCount,
                                        java.lang.Integer aFailureCount,
                                        java.lang.Integer aTestExceptionCount,
                                        java.lang.Integer aCallExceptionCount)
        Creates a new instance.
        Parameters:
        aSuccessCount - the number of successful tests
        aFailureCount - the number of failed tests
        aTestExceptionCount - the number of exceptions in tests
        aCallExceptionCount - the number of call exceptions in tests
      • ForkResultSummaryMessage

        public ForkResultSummaryMessage()
        The no-arg constructor, primarily used for serialization.
    • Method Detail

      • getSuccessCount

        public java.lang.Integer getSuccessCount()
      • getFailureCount

        public java.lang.Integer getFailureCount()
      • getTestExceptionCount

        public java.lang.Integer getTestExceptionCount()
      • getCallExceptionCount

        public java.lang.Integer getCallExceptionCount()