[Analysis, build] replace testApi -> testImplementation in build.gradle.kts where it's possible

This commit is contained in:
Ilya Kirillov
2023-05-31 14:28:27 +02:00
committed by Space Team
parent 78f09409b7
commit 1eb0862820
9 changed files with 72 additions and 62 deletions
+14 -13
View File
@@ -26,23 +26,24 @@ dependencies {
implementation(project(":analysis:analysis-internal-utils"))
implementation(project(":analysis:kt-references"))
testApi(projectTests(":analysis:low-level-api-fir"))
testApi(projectTests(":compiler:tests-common"))
testImplementation(projectTests(":analysis:low-level-api-fir"))
testImplementation(project(":analysis:analysis-api-standalone:analysis-api-standalone-base"))
testImplementation(projectTests(":compiler:tests-common"))
testApi(projectTests(":compiler:test-infrastructure-utils"))
testApi(projectTests(":compiler:test-infrastructure"))
testApi(projectTests(":compiler:tests-common-new"))
testApi(projectTests(":compiler:fir:analysis-tests:legacy-fir-tests"))
testApi(projectTests(":analysis:analysis-api-impl-base"))
testApi(projectTests(":analysis:decompiled:decompiler-to-file-stubs"))
testApi(project(":analysis:analysis-api-standalone:analysis-api-fir-standalone-base"))
testApi(project(":analysis:decompiled:decompiler-to-file-stubs"))
testApi(project(":analysis:decompiled:decompiler-to-psi"))
testApi(project(":kotlin-test:kotlin-test-junit"))
testImplementation(projectTests(":analysis:analysis-test-framework"))
testImplementation(projectTests(":compiler:tests-common-new"))
testImplementation(projectTests(":compiler:fir:analysis-tests:legacy-fir-tests"))
testImplementation(projectTests(":analysis:analysis-api-impl-base"))
testImplementation(projectTests(":analysis:decompiled:decompiler-to-file-stubs"))
testImplementation(project(":analysis:analysis-api-standalone:analysis-api-fir-standalone-base"))
testImplementation(project(":analysis:decompiled:decompiler-to-file-stubs"))
testImplementation(project(":analysis:decompiled:decompiler-to-psi"))
testImplementation(project(":kotlin-test:kotlin-test-junit"))
testApi(projectTests(":analysis:analysis-test-framework"))
testApi(toolsJar())
testImplementation(toolsJar())
testApiJUnit5()
testApi(project(":analysis:symbol-light-classes"))
testImplementation(project(":analysis:symbol-light-classes"))
}
sourceSets {