failTiming
Writes a fail timing event to the VU event log.
void failTiming(const string &id);
Parameters
id: The identifier of the event.
Return Value
None.
Remarks
An event is written to the Virtual Users event log. The event has a time in milliseconds from the start of the Test run. This is set at the time of call to this method. The event is typed as a failed timing and tagged with the identifier id.
This is equivalent to calling EndTiming with a pass value of false.
Timings are similar to transactions but are measured and grouped separately in test results.
Example
failTiming("logon part 1");
See also: endTiming