junit4/src/main/java/org/apache/sling/testing/mock/sling/junit/SlingContext.java [129:139]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    SlingContext(@NotNull final ContextPlugins contextPlugins,
            @Nullable final Map<String, Object> resourceResolverFactoryActivatorProps,
            @Nullable final ResourceResolverType resourceResolverType,
            final boolean registerSlingModelsFromClassPath) {

        this.plugins = contextPlugins;
        setResourceResolverFactoryActivatorProps(resourceResolverFactoryActivatorProps);
        setRegisterSlingModelsFromClassPath(registerSlingModelsFromClassPath);

        // set resource resolver type in parent context
        setResourceResolverType(resourceResolverType);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



junit5/src/main/java/org/apache/sling/testing/mock/sling/junit5/SlingContext.java [69:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    SlingContext(@NotNull final ContextPlugins contextPlugins,
            @Nullable final Map<String, Object> resourceResolverFactoryActivatorProps,
            @Nullable final ResourceResolverType resourceResolverType,
            final boolean registerSlingModelsFromClassPath) {

        this.plugins = contextPlugins;
        setResourceResolverFactoryActivatorProps(resourceResolverFactoryActivatorProps);
        setRegisterSlingModelsFromClassPath(registerSlingModelsFromClassPath);
        setResourceResolverType(resourceResolverType);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



