This test (added to org.springframework.boot.actuate.autoconfigure.ssl.SslMeterBinderTests) shouldn't fail:
@Test
void test() {
DefaultSslBundleRegistry sslBundleRegistry = new DefaultSslBundleRegistry();
MeterRegistry meterRegistry = bindToRegistry(sslBundleRegistry);
sslBundleRegistry.registerBundle("dummy", SslBundle.of(createSslStoreBundle("classpath:test.p12")));
assertThat(meterRegistry.getMeters()).isNotEmpty();
}