Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-2927 Resolve subclasses of EmbeddedKafkaBroker in tests #2931

Merged
merged 4 commits into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
* @author Artem Bilan
* @author Pawel Lozinski
* @author Adrian Chlebosz
* @author Michał Padula
*
* @since 2.3
*
Expand All @@ -72,7 +73,7 @@ public boolean supportsParameter(ParameterContext parameterContext, ExtensionCon
return false;
}
else {
return parameterContext.getParameter().getType().equals(EmbeddedKafkaBroker.class);
return EmbeddedKafkaBroker.class.isAssignableFrom(parameterContext.getParameter().getType());
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,14 @@
import org.junit.jupiter.api.Test;

import org.springframework.kafka.test.EmbeddedKafkaBroker;
import org.springframework.kafka.test.EmbeddedKafkaZKBroker;
import org.springframework.kafka.test.context.EmbeddedKafka;
import org.springframework.kafka.test.utils.KafkaTestUtils;

/**
* @author Gary Russell
* @author Michał Padula
*
* @since 2.3
*
*/
Expand All @@ -41,4 +44,9 @@ public void test(EmbeddedKafkaBroker broker) {
assertThat(broker.getPartitionsPerTopic()).isEqualTo(3);
}

@Test
public void testResolver(EmbeddedKafkaZKBroker broker) {
assertThat(broker).isNotNull();
}

}