Keep in mind that the resolution of System.currentTimeMillis()
varies between different operating systems. I believe Windows is around 15 msec. So if your doSomething()
runs faster than the time resolution, you'll get a delta of 0. You could run doSomething()
in a loop multiple times, but then the JVM may optimize it.