Package com.google.caliper.model

Examples of com.google.caliper.model.ArbitraryMeasurement


      @Benchmark Object benchmark,
      @BenchmarkMethod Method method,
      @WorkerOptions Map<String, String> workerOptions) {
    super(benchmark, method);
    this.options = new Options(workerOptions);
    ArbitraryMeasurement annotation = method.getAnnotation(ArbitraryMeasurement.class);
    this.unit = annotation.units();
    this.description = annotation.description();
  }
View Full Code Here

TOP

Related Classes of com.google.caliper.model.ArbitraryMeasurement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.