com.undefinedlabs.scope.rules.JUnit4ComposedScopeRunnerAgentRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scope-runner-junit4 Show documentation
Show all versions of scope-runner-junit4 Show documentation
Scope is a APM for tests to give engineering teams unprecedented visibility into their CI process to quickly
identify, troubleshoot and fix failed builds.
This artifact contains the classes to instrument the JUnit4 runner.
package com.undefinedlabs.scope.rules;
import com.undefinedlabs.scope.runner.rules.AbstractComposedScopeRunnerAgentRule;
import java.util.Arrays;
public class JUnit4ComposedScopeRunnerAgentRule extends AbstractComposedScopeRunnerAgentRule {
@Override
protected Iterable extends AbstractScopeAgentRule> rules() {
return Arrays.asList(
new JUnit4RunChildScopeRunnerAgentRule(), new JUnit4IgnoredScopeRunnerAgentRule());
}
}