startTiming
Writes a start timing event to the VU event log.
void startTiming(const string &id);
Parameters
id: [in] The identifier of the timing.
Return Value
None.
Remarks
An event is written to the virtual user's 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 start timing and tagged with the identifier id.
Timings are similar to transactions but are measured and grouped separately in test results.
Example
startTiming("logon part 1");
See also: endTiming