StopwatchUtils.java

  1. package com.renomad.minum.testing;

  2. /**
  3.  * This class provides some tools for running a virtual stopwatch
  4.  * while code is running, to examine code speed.
  5.  * <h3>
  6.  *     example:
  7.  * </h3>
  8.  *
  9.  * <pre>
  10.  {@code
  11.  final var timer = new StopWatch().startTimer();
  12.  for (var i = 1; i < 5; i++) {
  13.      doStuff();
  14.  }
  15.  final var time = timer.stopTimer();
  16.  printf("time taken was " + time " + milliseconds");
  17.  }
  18.  * </pre>
  19.  */
  20. public final class StopwatchUtils {

  21.     private long startTime;

  22.     public StopwatchUtils startTimer() {
  23.         this.startTime = System.currentTimeMillis();
  24.         return this;
  25.     }

  26.     public StopwatchUtils() {
  27.         startTime = 0;
  28.     }


  29.     public long stopTimer() {
  30.         final var endTime = System.currentTimeMillis();
  31.         return endTime - startTime;
  32.     }
  33. }