AndrewJSchofield commented on code in PR #16920:
URL: https://github.com/apache/kafka/pull/16920#discussion_r1725021445
##########
core/src/test/scala/integration/kafka/api/PlaintextAdminIntegrationTest.scala:
##########
@@ -1948,6 +1948,166 @@ class PlaintextAdminIntegrationTest extends
BaseAdminIntegrationTest {
}
}
+ @ParameterizedTest
+ @ValueSource(strings = Array("kraft+kip932"))
+ def testShareGroups(quorum: String): Unit = {
+ val config = createConfig
+ client = Admin.create(config)
+ try {
+ // Verify that initially there are no share groups to list.
+ val list1 = client.listShareGroups()
+ assertTrue(0 == list1.all().get().size())
Review Comment:
Because the code was copied from `testConsumerGroups` :) I've fixed both.
--
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]