Interface IBuildTestResults

All Superinterfaces:
IChangeGenerator, IChangeListener, IHasCustomValues, IHasValues, IStructure

public interface IBuildTestResults extends IStructure
Build test results.
Version:
$Revision$ $Date$
Author:
Stepan Roh, Polarion Software
  • Field Details

  • Method Details

    • getTestCount

      int getTestCount()
      Total number of tests.
      Returns:
      number of tests
    • getFailureCount

      int getFailureCount()
      Number of tests with expected (known) failures.
      Returns:
      number of failures
    • getErrorCount

      int getErrorCount()
      Number of tests with unexpected (unknown) failures = errors.
      Returns:
      number of errors.
    • getSkippedCount

      int getSkippedCount()
      Number of skipped tests.
      Returns:
      number of skipped tests
    • setTestCount

      void setTestCount(int testCount)
      Set total number of tests
      Parameters:
      testCount - number of tests
    • setFailureCount

      void setFailureCount(int failureCount)
      Set number of tests with failures.
      Parameters:
      failureCount - number of tests with failures
    • setErrorCount

      void setErrorCount(int errorCount)
      Set number of tests with errors.
      Parameters:
      errorCount - number of tests with errors
    • setSkippedCount

      void setSkippedCount(int skippedCount)
      Set number of skipped tests.
      Parameters:
      skippedCount - number of skipped tests