我有以下結構:如何識別步驟是在SoapUI中的RunTestCase?
每個單一功能在可重用腳本中被分解並在主套件中重用所有功能。
TestCase 1:
1. Login as Normal Customer (This is calling login test case from Reusable script)
2. Extract Session from STEP 1
3. Add diner card (This is calling add card test case from Reusable script)
4. View Added Card (This is calling view test case from Reusable script)
5. etc..
現在每個測試用例可重複使用的腳本返回r_result(已通過或失敗)
現在我想檢查每次運行測試案例,看看屬性r_result傳遞或失敗的屬性。如果失敗,我需要檢查第一次失敗發生的位置(在RunTestCase
)並報告錯誤。
是否有可能分離每個測試用例中的RunTestCase步驟,並在閉包中使用它來獲取每個RunTestCase結果的結果?
是要找到整個測試套件的測試案例「RunTestCase」式的測試步驟? – Rao