All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.undefinedlabs.scope.rules.ScopeCoverageAgentRulesResolver Maven / Gradle / Ivy

Go to download

Scope is a APM for tests to give engineering teams unprecedented visibility into their CI process to quickly identify, troubleshoot and fix failed builds. The Scope Java agent allows to instrument the tests executions and send the results to your Scope instance.

There is a newer version: 0.15.1-beta.2
Show newest version
package com.undefinedlabs.scope.rules;

import com.undefinedlabs.scope.coverage.rules.ScopeCoverageAgentRule;

import java.util.ServiceLoader;

public enum ScopeCoverageAgentRulesResolver implements CoverageAgentRulesResolver {

    INSTANCE;

    @Override
    public Iterable resolve() {
        return ServiceLoader.load(ScopeCoverageAgentRule.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy