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

com.undefinedlabs.scope.rules.extractor.NoopScopeBenchmarkStatisticsExtractor 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. This artifact contains the classes to instrument the Java JMH Benchmark Framework.

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

import com.undefinedlabs.scope.rules.model.ScopeBenchmarkStatistics;
import org.openjdk.jmh.results.Result;

public class NoopScopeBenchmarkStatisticsExtractor
    extends AbstractScopeBenchmarkStatisticsExtractor {

  public static final ScopeBenchmarkStatisticsExtractor INSTANCE =
      new NoopScopeBenchmarkStatisticsExtractor();

  private NoopScopeBenchmarkStatisticsExtractor() {}

  @Override
  public ScopeBenchmarkStatistics extract(Result result) {
    return newBuilder().build();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy