public SlingRule()

in src/main/java/org/apache/sling/testing/junit/rules/SlingRule.java [50:59]


    public SlingRule(Instance... instances) {
        this.instances = instances;
        this.ruleChain = ruleChain.around(testStickySessionRule)
                .around(filterRule)
                .around(testDescriptionRule);
        // Configure all rules that need an instance (where you can get a client from)
        for (Instance instance : instances) {
            this.ruleChain = ruleChain.around(new RemoteLogDumperRule(instance));
        }
    }