Class ForkResultSummary


  • public class ForkResultSummary
    extends java.lang.Object
    A summary over the results which is returned by a fork after executing a suite.
    Author:
    Rene Schneider - initial API and implementation
    • Constructor Detail

      • ForkResultSummary

        public ForkResultSummary​(int aSuccessCount,
                                 int aFailureCount,
                                 int aTestExceptionCount,
                                 int 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
    • Method Detail

      • getSuccessCount

        public int getSuccessCount()
      • getFailureCount

        public int getFailureCount()
      • getExceptionCount

        public int getExceptionCount()
      • getTestExceptionCount

        public int getTestExceptionCount()
      • getCallExceptionCount

        public int getCallExceptionCount()