TC.setTransactionStatusByName

Sets the default end status of a single open transaction by the transaction name. The transaction must have Auto status in its TC.endTransaction statement.

TC.setTransactionStatusByName(status, name);

Note: If you make a series of calls to modify the Auto status, then the last call before TC.endTransaction is the one that effectively changes the status.

Arguments

Name Description
statusOne of the following transaction status values: Pass, Fail. The Auto status is not applicable.

name

(string) The name of the transaction to set.

Return value

(void) undefined

Example

Copy code
TC.setTransactionStatusByName("Fail", "T1")