Sets a progress point in the VU event log, specifying whether the progress point passed,
and specifying extra information which appears in the Info column.
Namespace: Facilita.Fc.RuntimeAssembly: fc_clr (in fc_clr.dll) Version: 9.5.7.98
Syntax
Parameters
- progressPoint
- Type: System String
The progress point identifier, which will appear in the Progress Point column in Test Controller.
- info
- Type: System String
Extra information which appears in the Info column.
- pass
- Type: System Boolean
true if the progress point should be interpreted as a pass; otherwise, false.
Remarks
Examples
SetProgressPoint("AtLogon"); string response = .... // the response from the server if (response.Contains("Invalid User or Password")) { SetProgressPoint("logon", response, false); // logon failed } else { SetProgressPoint("logon", response, true); // logon OK }
See Also