( list_init )

Legend
Has corresponding code
No direct match, but an alternative exists
No corresponding code
-TODO
( .. )Not localized
Example Python
pytest
C++
GoogleTest
Swift
Testing
Kotlin
jUnit
Bash
bats
( init_empty_list ) [] - - - -
( init_list ) [ .. ] - - - -
( init_list_allows_last_comma ) o - - - -
( set_init ) { .. } - - - -
( sequence_1_to_n ) range(1, n+1) - - - -
( sequence_n_to_1 ) range(n, 0, -1) - - - -
( sequence_step_by_x ) range(1, n+1, x) - - - -
( sequence_a_to_z ) - - - -
( init_with_size ) items = [x] * n - - - -