@Benchmark
 @BenchmarkMode(Mode.AverageTime)
 @OutputTimeUnit(TimeUnit.NANOSECONDS)
 public int proxy_passThrough() {
   return primsPassThroughProxy.increment(one);
 }
 @Benchmark
 @BenchmarkMode(Mode.AverageTime)
 @OutputTimeUnit(TimeUnit.NANOSECONDS)
 public int proxy_prims() {
   return primsMethodProxy.increment(1);
 }