Interface ScheduleTaskTestResult


public interface ScheduleTaskTestResult
Interface representing a schedule task test result.
Since:
4.0.17
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    the number of errors logged during executed test
    int
    the number of fatal errors logged during executed test
    contents of the log file or a string showing errors
    int
    the number of warnings logged during executed test
    boolean
    true if test was successful, false otherwise
  • Method Details

    • getMessages

      String getMessages()
      contents of the log file or a string showing errors
      Since:
      4.0.17
    • wasSuccessful

      boolean wasSuccessful()
      true if test was successful, false otherwise
      Since:
      4.0.17
    • getFatalCount

      int getFatalCount()
      the number of fatal errors logged during executed test
      Since:
      4.0.17
    • getErrorCount

      int getErrorCount()
      the number of errors logged during executed test
      Since:
      4.0.17
    • getWarningCount

      int getWarningCount()
      the number of warnings logged during executed test
      Since:
      4.0.17