VirtualUser EndTiming Method (String, Boolean, VirtualUserScript)C# API
Writes an end timing event to the VU event log, specifying whether the timing passed.

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

public void EndTiming(
	string id,
	bool pass,
	VirtualUserScript script = null
)

Parameters

id
Type: System String
The timing identifier.
pass
Type: System Boolean
true if the timing should be interpreted as a pass; otherwise, false.
script (Optional)
Type: Facilita.Fc.Runtime VirtualUserScript
The currently executing VirtualUserScript.
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.

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

If the timing failed, then it will be counted separately in Test Controller and Analyzer.

See Also