Tips
Provide more feedback during test execution
Running lots of compatibility tests can take some time. If you need more visual feedback
regarding progress try adding something like this to the gradleTest
configuration.
gradleTest{
beforeTest {
println " ${it.name}" (1)
}
}
1 | Print the name of the current compatibility test that is runnign |