You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOG.debug("{}: Found implementation: {} in jar {}", apiType.getSimpleName(), implType.getName(), implType.getProtectionDomain().getCodeSource().getLocation().getPath());
if (!type.isAnnotationPresent(CheckAvailability.class)) {
75
93
returntrue; // if type is not annotated, skip tests
76
94
}
95
+
if (!type.getModule().isExported(type.getPackageName(), IntegrationsLoader.class.getModule())) {
96
+
LOG.error("Can't run @CheckAvailability tests for class {}. Make sure to export {} to {}!", type.getName(), type.getPackageName(), IntegrationsLoader.class.getPackageName());
0 commit comments