Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch ensureTestNamingConvention to run in JUnit to reduce test setups
For many test classes, this it the last method that is not converted. For example, running `TestInformationSchemaConnector` with TestNG will run only this method. Moving this will make tests like `TestInformationSchemaConnector` JUnit-only and improve test overall time (fewer `createQueryRunner` invocations). Obviously, it can be the first JUnit test method for some other classes, but - the train cannot be stopped. We do this sooner or later. - `AbstractTestQueries` are already JUnit; `BaseConnectorTest` extends from `AbstractTestQueries` and `BaseConnectorTest` are most likely to most expensive setups, because they create dependant services.
- Loading branch information