Re: RFR: 8254013: gradle test should run all test classes even if they don't end with "Test"

2020-10-28 Thread Pankaj Bansal
On Thu, 22 Oct 2020 11:45:08 GMT, Kevin Rushforth wrote: > The test targets in `build.gradle` are set up to run only classes whose name > ends with exactly `Test`. A test class named `RunMyTest.java` will be run, > but a test called `CheckSomething.java` will not be. This was done because >

Re: RFR: 8254013: gradle test should run all test classes even if they don't end with "Test"

2020-10-28 Thread Ambarish Rapte
On Thu, 22 Oct 2020 11:45:08 GMT, Kevin Rushforth wrote: > The test targets in `build.gradle` are set up to run only classes whose name > ends with exactly `Test`. A test class named `RunMyTest.java` will be run, > but a test called `CheckSomething.java` will not be. This was done because >

RFR: 8254013: gradle test should run all test classes even if they don't end with "Test"

2020-10-22 Thread Kevin Rushforth
The test targets in `build.gradle` are set up to run only classes whose name ends with exactly `Test`. A test class named `RunMyTest.java` will be run, but a test called `CheckSomething.java` will not be. This was done because gradle's built-in scanner for test classes was buggy in earlier