qala-io / datagen

Java lib that generates random data (numbers, strings, dates) - mostly to facilitate Randomized Testing.
http://qala.io/blog/randomized-testing.html
Apache License 2.0
60 stars 5 forks source link

Add support for generating random Locale #17

Closed php-coder closed 6 years ago

php-coder commented 6 years ago

At this time I have to write my own function that just pick one random locale from a list of fixed length.

ctapobep commented 6 years ago

Isn't it just sample(Locale.getAvailableLocales())?

php-coder commented 6 years ago

Yes, it looks like I can use it. Thanks!