Interface ScheduleTaskTestResult
public interface ScheduleTaskTestResult
Interface representing a schedule task test result.
- Since:
- 4.0.17
-
Method Summary
Modifier and TypeMethodDescriptionintthe number of errors logged during executed testintthe number of fatal errors logged during executed testcontents of the log file or a string showing errorsintthe number of warnings logged during executed testbooleantrueif test was successful,falseotherwise
-
Method Details
-
getMessages
String getMessages()contents of the log file or a string showing errors- Since:
- 4.0.17
-
wasSuccessful
boolean wasSuccessful()trueif test was successful,falseotherwise- 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
-