()
| 8 | public class Timer { |
| 9 | private long start = System.nanoTime(); |
| 10 | public long duration() { |
| 11 | return NANOSECONDS.toMillis( |
| 12 | System.nanoTime() - start); |
| 13 | } |
| 14 | public static long duration(Runnable test) { |
| 15 | Timer timer = new Timer(); |
| 16 | test.run(); |