IReporter Interface : Report Method |
The test object to which the information is relevant.
Possible values:
- NULL. If the information added to the run results is not related to a specific test object.
- The reportContext provided by the RunEx method that ran the relevant test object method during the run session.
The status flag.
A predefined constant (without quotes) or value.
One of:
micPass 0 micFail 1 micDone 2 micWarning 3
The name of the step to display in the Run Results Viewer. If an empty string is passed, the test object name passed for the context parameter is used, if available.
Visual Basic |
---|
Public Sub Report( _ ByVal context As Variant, _ ByVal status As ULong, _ ByVal method As String, _ ByVal htmlDetails As String, _ ByVal plainTextDetails As String _ ) |
- context
The test object to which the information is relevant.
Possible values:
- NULL. If the information added to the run results is not related to a specific test object.
- The reportContext provided by the RunEx method that ran the relevant test object method during the run session.
- status
The status flag.
A predefined constant (without quotes) or value.
One of:
micPass 0 micFail 1 micDone 2 micWarning 3 - method
The name of the step to display in the Run Results Viewer. If an empty string is passed, the test object name passed for the context parameter is used, if available.
- htmlDetails
- An HTML string containing information to add to the run results.
- plainTextDetails
- A text string containing the information to add to the run results.