Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid redundantly doubled test setup
Disable `AbstractTestQueryFramework.ensureTestNamingConvention` TestNG test to avoid redundant 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. Disabling this will make tests like `TestInformationSchemaConnector` JUnit-only and improve test overall time (fewer `createQueryRunner` invocations). The test remains enabled for `BaseConnectorTest` and `BaseConnectorSmokeTest`, which already use JUnit and thus are either all-JUnit or do setup twice anyway. This change also makes it easier to run all-JUnit test classes from an IDE, since now IDE will offer only the "Run with JUnit" option.
- Loading branch information