Skip to content
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();
}

}