VirtualUser FailTiming Method C# API
Writes a fail timing event to the VU event log.

Namespace: Facilita.Fc.Runtime
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

public void FailTiming(
	string id
)

Parameters

id
Type: System String
The timing identifier.
Remarks

The time in milliseconds since the start of the test run is recorded when this method is called. The StartTiming(String, VirtualUserScript) method should already have been called with the same id. eggPlant Performance uses the time difference between the events to calculate the timing with the specified id.

This timing will be interpreted as having failed, so it will be counted separately in Test Controller and Analyzer. This is equivalent to calling EndTiming(String, Boolean, VirtualUserScript) with a pass value of false.

Timings are similar to transactions but are measured and grouped separately in test results.

See Also