Last active
August 8, 2023 03:18
-
-
Save mherman22/271642b925e576c1692b32e571552321 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
public void generateUUIDsForTests() { | |
int count = 10; | |
for (int i = 0; i < count; i++) { | |
UUID uuid = UUID.randomUUID(); | |
String uuidString = uuid.toString(); | |
System.out.println("Generated UUID: " + uuidString); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for creating a bunch of uuids, the snippet below would be helpful