Package com.google.caliper.runner

Examples of com.google.caliper.runner.BenchmarkMethod


                    "LatencyMeasure methods must not be static: " + method.getName());
        }

        final String methodName = method.getName();
        final String shortName = methodName.substring("latency".length());
        return new BenchmarkMethod(benchmarkClass, method, shortName);
    }
View Full Code Here

TOP

Related Classes of com.google.caliper.runner.BenchmarkMethod

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.