Aceito sugestões.
public class Teste01Calculadora {
public static void main(String[] args) throws Exception {
Calculadora calculadora = new Calculadora();
testeDeSoma(calculadora);
}
private static void testeDeSoma(Calculadora calculadora) throws Exception {
long inicio = System.currentTimeMillis();
for (int i = 0; i <= 50000; i++) {
int a = new Random().nextInt();
int b = new Random().nextInt();
long c = calculadora.somar(a, b);
if (c != a + b) {
throw new Exception("Erro de calculo!");
}
}
long fim = System.currentTimeMillis();
System.out.println("Tempo de execução: " + (fim - inicio));
}
}