Skip to content

Instantly share code, notes, and snippets.

@arslan-gg
Created September 2, 2021 10:13
Show Gist options
  • Save arslan-gg/e3ec73cd55ef68b94d497662f3865956 to your computer and use it in GitHub Desktop.
Save arslan-gg/e3ec73cd55ef68b94d497662f3865956 to your computer and use it in GitHub Desktop.
Get random value from provided list.
@SafeVarargs
public final <T> T oneOf(T... values) {
return values[faker.number().numberBetween(0, new Random().nextInt(values.length))];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment