1. 程式人生 > >關於事務(transaction)

關於事務(transaction)

因此在LoadRunner 中事務就是一組函式,事務本身沒有一個特定的意義,這一組函式是:lr_start_transaction("test");lr_end_transaction("test", LR_AUTO);這一組函式必須同時出現,如果出現其中一個,比如只有開始函式lr_start_transaction("test");沒有lr_end_transaction("test", LR_AUTO);函式系統執行後會報錯:Error: Vuser started transaction "test", but did not reached a corresponding end transaction statement. The transaction ended automatically with status 'fail'.
同樣的如果只有結束事務沒有開始的事務函式報以下錯誤:Error: Failed to end Transaction "test" (by name). Please check that you made a call to start transaction operation.