exit loop
ループ内でexit loopが遭遇された場合、そのループは直ちに終了し、テスト実行の制御はループの直後にある次のアクションラインで再開されます。
このアクションには引数がありません。
なし
このアクションは、次のプロジェクト項目で使用できます: テストモジュールおよびユーザー定義アクションです。
name value
local variable temp count 1
 
repeat
 
text
report # temp count
 
name value
local variable temp count #temp count+1
 
condition
if # temp count=2
 
exit loop
 
end if
 
condition to stop
until #temp count=4
- 反復ループの早期終了は、通常、実行の過程で何らかの条件が変更された場合にのみ望ましいです。そのため、exit loop は通常、1つ以上の if 条件と関連付けられます。
- exit loop は以下の種類のループをサポートしています:
- while-end while
- repeat-until
- use data set-repeat for data set
- 注意:データセットループのサポートは、TestArchitect 8.3 アップデート 5以降に適用されます。