Integration tests were missed in previous PRs and were not verified.
For integration tests to work correctly the following changes were needed:
Gradle syntax update: integrationTestCompile and integrationTestRuntime updated to integrationTestImplementation and integrationTestRuntimeOnly so the integration tests can use tests' dependencies, as per Gradle docs
Integration tests were missed in previous PRs and were not verified. For integration tests to work correctly the following changes were needed:
integrationTestCompile
andintegrationTestRuntime
updated tointegrationTestImplementation
andintegrationTestRuntimeOnly
so the integration tests can use tests' dependencies, as per Gradle docs