( list_loop )

凡例
対応コードあり
直接対応していないが代替の書き方あり
対応コードなし
-未確認
( .. )ローカライズまだ
Example Python
pytest
C++
GoogleTest
Swift
Testing
Kotlin
jUnit
Bash
bats
( list_foreach ) for item in items - - - -
( list_foreach_with_index ) for i, v in enumerate(items) - - - -
( list_for_in ) for i in range(n) - - - -
( list_foreach_multi_col ) use zip - - - -