本文整理汇总了Java中com.carrotsearch.junitbenchmarks.annotation.BenchmarkMethodChart类的典型用法代码示例。如果您正苦于以下问题:Java BenchmarkMethodChart类的具体用法?Java BenchmarkMethodChart怎么用?Java BenchmarkMethodChart使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
BenchmarkMethodChart类属于com.carrotsearch.junitbenchmarks.annotation包,在下文中一共展示了BenchmarkMethodChart类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: generate
import com.carrotsearch.junitbenchmarks.annotation.BenchmarkMethodChart; //导入依赖的package包/类
public void generate(DbConsumer c) throws Exception
{
for (Class<?> clazz : types)
{
MethodChartGenerator g = new MethodChartGenerator(
GeneratorUtils.getFilePrefix(
clazz, clazz.getAnnotation(BenchmarkMethodChart.class).filePrefix(), c.getChartsDir()),
clazz.getName(),
c);
AxisRange ann = clazz.getAnnotation(AxisRange.class);
if (ann != null)
{
g.min = ann.min();
g.max = ann.max();
}
g.generate();
}
}
示例2: visit
import com.carrotsearch.junitbenchmarks.annotation.BenchmarkMethodChart; //导入依赖的package包/类
public void visit(Class<?> clazz, Method method, Result result)
{
if (clazz.isAnnotationPresent(BenchmarkMethodChart.class)
&& !types.contains(clazz))
{
types.add(clazz);
}
}