Interface ScheduleTaskTestResult
public interface ScheduleTaskTestResult
Interface representing a schedule task test result.
- Since:
- 4.0.17
-
Method Summary
Modifier and TypeMethodDescriptionint
the number of errors logged during executed testint
the number of fatal errors logged during executed testcontents of the log file or a string showing errorsint
the number of warnings logged during executed testboolean
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
-