You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement methods for generating empty / non-empty lists and populate them randomly with a reasonable number of elements. Also allow duplicate elements.
Implement methods for generating empty / non-empty sets and populate them randomly with a reasonable number of elements.
stefanhechtltng
changed the title
Provide methods for generating random lists
Provide methods for generating randomly populated lists
Jul 29, 2021
stefanhechtltng
changed the title
Provide methods for generating randomly populated lists
Provide methods for generating randomly populated collections
Jul 29, 2021
Implement methods for generating empty / non-empty lists and populate them randomly with a reasonable number of elements. Also allow duplicate elements.
Implement methods for generating empty / non-empty sets and populate them randomly with a reasonable number of elements.
Typical usage:
valueprovider.listOf(FooTestData::foo) -> [foo_1, foo_2]
valueprovider.listOf(FooTestData::foo) -> []
valueprovider.nonEmptyListOf(FooTestData::foo) -> [foo_1]
valueprovider.setOf(FooTestData::foo) -> [foo_1]
The text was updated successfully, but these errors were encountered: