While tests are running, the number of tests run so far is ephemerally displayed, but how can I print the total number of tests that were run to the console after all tests have run?
Configuring testLogging
doesn't help. I can make gradle output a result for every test, like this:
testLogging {
events "passed", "skipped", "failed"
}
But I want a summary "bottom line", that outputs the total number of tests that were run, even if they all passed.