We migrated from Ant to Gradle; we used to be able to use a formatter in the junit ant task that allowed us (among other things) to add a suffix to all the result XML files created from the tests.
Is there a way to do that in Gradle; is there a hook in the API to provide a formatter? And if not, is there a way to just rename the files on the fly?
I know we can use the ant.junit task within Gradle, but we would rather stick with the native Gradle test task if possible…