andrew4699 commented on code in PR #436:
URL: https://github.com/apache/polaris/pull/436#discussion_r1834832786


##########
polaris-service/src/test/java/org/apache/polaris/service/test/TestEnvironment.java:
##########
@@ -20,10 +20,18 @@
 
 import jakarta.ws.rs.client.Client;
 import java.net.URI;
+import java.util.UUID;
 
-/** Defines the test environment that a test should run in. */
-public record TestEnvironment(Client apiClient, URI baseUri) {
+/**
+ * Defines the test environment that a test should run in.
+ *
+ * @param apiClient The HTTP client to use when making requests
+ * @param baseUri The base URL that requests should target, for example 
http://localhost:1234
+ * @param uniqueId An ID unique to this test. This can be used to prefix 
resource names, such as
+ *     catalog names, to prevent collision.
+ */
+public record TestEnvironment(Client apiClient, URI baseUri, String uniqueId) {

Review Comment:
   Updated to `testId`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to