exercise method

void exercise()

Exercises the benchmark. By default invokes run 10 times.

Implementation

void exercise() {
  for (var i = 0; i < 10; i++) {
    run();
  }
}