We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
KafkaContainerTest
1 parent cbfe089 commit e013a65Copy full SHA for e013a65
modules/kafka/src/test/java/org/testcontainers/containers/KafkaContainerTest.java
@@ -96,6 +96,14 @@ public void testExternalZookeeperWithExternalNetwork() throws Exception {
96
}
97
98
99
+ @Test
100
+ public void testConfluentPlatformVersion7() throws Exception {
101
+ try (KafkaContainer kafka = new KafkaContainer(DockerImageName.parse("confluentinc/cp-kafka:7.2.2"))) {
102
+ kafka.start();
103
+ testKafkaFunctionality(kafka.getBootstrapServers());
104
+ }
105
106
+
107
@Test
108
public void testConfluentPlatformVersion5() throws Exception {
109
try (KafkaContainer kafka = new KafkaContainer(DockerImageName.parse("confluentinc/cp-kafka:5.4.3"))) {
0 commit comments