src/main/java/org/apache/flink/state/benchmark/RescalingBenchmarkBase.java [59:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static void runBenchmark(Class<?> clazz) throws RunnerException {
        Options options =
                new OptionsBuilder()
                        .verbosity(VerboseMode.NORMAL)
                        .include(".*" + clazz.getCanonicalName() + ".*")
                        .build();

        new Runner(options).run();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/flink/scheduler/benchmark/SchedulerBenchmarkExecutorBase.java [50:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static void runBenchmark(Class<?> clazz) throws RunnerException {
        Options options =
                new OptionsBuilder()
                        .verbosity(VerboseMode.NORMAL)
                        .include(".*" + clazz.getCanonicalName() + ".*")
                        .build();

        new Runner(options).run();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



