Package jenkins.benchmark.jmh
Annotation Interface JmhBenchmark
Annotate your benchmark classes with this annotation to allow them to be discovered by
BenchmarkFinder
- Since:
- 2.50
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionMethods which annotated byBenchmark
in classes annotated byJmhBenchmark
are to be run as benchmarks if they match this regex pattern.
-
Element Details
-
value
String valueMethods which annotated byBenchmark
in classes annotated byJmhBenchmark
are to be run as benchmarks if they match this regex pattern.Matches all functions by default, i.e. default pattern is
.*
.- Returns:
- the regular expression used to match function names.
- Default:
- ".*"
-