[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
+9 -9
View File
@@ -21,7 +21,7 @@ dependencies {
api(project(":analysis:analysis-api-impl-barebone"))
api(project(":js:js.config"))
api(project(":compiler:cli-common"))
testApi(project(":analysis:analysis-api-fir"))
testImplementation(project(":analysis:analysis-api-fir"))
implementation(project(":compiler:frontend.common"))
implementation(project(":compiler:fir:entrypoint"))
implementation(project(":analysis:analysis-api-providers"))
@@ -38,17 +38,17 @@ dependencies {
testApi(projectTests(":compiler:test-infrastructure-utils"))
testApi(projectTests(":compiler:test-infrastructure"))
testApi(projectTests(":compiler:tests-common-new"))
testImplementation(projectTests(":compiler:tests-common-new"))
testImplementation("org.opentest4j:opentest4j:1.2.0")
testImplementation(project(":analysis:analysis-api-standalone:analysis-api-fir-standalone-base"))
testApi(toolsJar())
testApi(projectTests(":compiler:tests-common"))
testApi(projectTests(":compiler:fir:analysis-tests:legacy-fir-tests"))
testApi(projectTests(":analysis:analysis-api-impl-barebone"))
testApi(projectTests(":analysis:analysis-test-framework"))
testApi(projectTests(":analysis:analysis-api-impl-base"))
testApi(project(":kotlin-test:kotlin-test-junit"))
testImplementation(toolsJar())
testImplementation(projectTests(":compiler:tests-common"))
testImplementation(projectTests(":compiler:fir:analysis-tests:legacy-fir-tests"))
testImplementation(projectTests(":analysis:analysis-api-impl-barebone"))
testImplementation(projectTests(":analysis:analysis-test-framework"))
testImplementation(projectTests(":analysis:analysis-api-impl-base"))
testImplementation(project(":kotlin-test:kotlin-test-junit"))
testApiJUnit5()
testImplementation(project(":analysis:symbol-light-classes"))