in core/src/main/java/org/apache/sling/testing/mock/sling/context/SlingContextImpl.java [488:495]
public final void runMode(@NotNull String @NotNull ... runModes) {
Set<String> newRunModes = new HashSet<>(Arrays.asList(runModes));
ServiceReference<SlingSettingsService> ref = bundleContext().getServiceReference(SlingSettingsService.class);
if (ref != null) {
MockSlingSettingService slingSettings = (MockSlingSettingService)bundleContext().getService(ref);
slingSettings.setRunModes(newRunModes);
}
}