Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Eu fiz desta forma, acredito que o princípio é o mesmo.

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));
    }
}
1 resposta
solução!

Até aqui tudo bem Matheus!

Continue estudando e obrigado por compartilhar, Nico