Polish "Use generic wildcard for Pulsar beans"
See gh-39308
This commit is contained in:
parent
c02dd14c66
commit
cee249197f
|
@ -379,7 +379,8 @@ class PulsarAutoConfigurationTests {
|
|||
this.contextRunner.withBean(ExplicitGenericTypeConfig.class)
|
||||
.run((context) -> assertThat(context).getBean(ExplicitGenericTypeConfig.class)
|
||||
.hasFieldOrPropertyWithValue("consumerFactory", context.getBean(PulsarConsumerFactory.class))
|
||||
.hasFieldOrPropertyWithValue("containerFactory", context.getBean(ConcurrentPulsarListenerContainerFactory.class)));
|
||||
.hasFieldOrPropertyWithValue("containerFactory",
|
||||
context.getBean(ConcurrentPulsarListenerContainerFactory.class)));
|
||||
}
|
||||
|
||||
@TestConfiguration(proxyBeanMethods = false)
|
||||
|
@ -400,13 +401,17 @@ class PulsarAutoConfigurationTests {
|
|||
}
|
||||
|
||||
static class ExplicitGenericTypeConfig {
|
||||
|
||||
@Autowired
|
||||
PulsarConsumerFactory<TestType> consumerFactory;
|
||||
|
||||
@Autowired
|
||||
ConcurrentPulsarListenerContainerFactory<TestType> containerFactory;
|
||||
|
||||
static class TestType {}
|
||||
static class TestType {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue