com.carrotsearch.junitbenchmarks.annotation.AxisRange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-benchmarks Show documentation
Show all versions of junit-benchmarks Show documentation
A framework for writing performance micro-benchmarks using JUnit4 annotations.
package com.carrotsearch.junitbenchmarks.annotation;
import java.lang.annotation.*;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface AxisRange
{
double min() default Double.NaN;
double max() default Double.NaN;
}