Home
last modified time | relevance | path

Searched refs:RuntimeBenchmark (Results 1 – 1 of 1) sorted by relevance

/external/caliper/caliper/src/test/java/com/google/caliper/runner/
DRuntimeInstrumentTest.java64 FluentIterable.from(Arrays.asList(RuntimeBenchmark.class.getDeclaredMethods())) in isBenchmarkMethod()
79 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("macrobenchmark"); in createInstrumentation_macrobenchmark()
87 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("microbenchmark", int.class); in createInstrumentation_microbenchmark()
95 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("picobenchmark", long.class); in createInstrumentation_picobenchmark()
104 RuntimeBenchmark.class.getDeclaredMethod("integerParam", Integer.class); in createInstrumentation_badParam()
112 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("notAMacrobenchmark"); in createInstrumentation_notAMacrobenchmark()
121 RuntimeBenchmark.class.getDeclaredMethod("notAMicrobenchmark", int.class); in createInstrumentationnotAMicrobenchmark()
130 RuntimeBenchmark.class.getDeclaredMethod("notAPicobenchmark", long.class); in createInstrumentation_notAPicobenchmark()
138 private static final class RuntimeBenchmark { class in RuntimeInstrumentTest