Package com.carrotsearch.junitbenchmarks.annotation

Examples of com.carrotsearch.junitbenchmarks.annotation.AxisRange


                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();
        }
    }
View Full Code Here


                    clazz.getAnnotation(BenchmarkMethodChart.class).filePrefix(),
                    c.chartsDir),
                c.runId,
                clazz.getName());

            AxisRange ann = clazz.getAnnotation(AxisRange.class);
            if (ann != null)
            {
                g.min = ann.min();
                g.max = ann.max();
            }

            g.generate();
        }
    }
View Full Code Here

                    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();
        }
    }
View Full Code Here

TOP

Related Classes of com.carrotsearch.junitbenchmarks.annotation.AxisRange

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.