Next: , Previous: loop keyword, Up: Test Case control


5.7.13 breakloop keyword

The breakloop keyword is used to prematurely exit the current loop. The breakloop keyword can be used, for example, in the following way:

     loop 5
     var exitcond
     someclass somemethod someparam
     if exitcond
         breakloop
     endif
     endloop