From c63ea36637ce956029fb15b1482c0683ecb8a587 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Wed, 30 Aug 2023 15:58:46 +0200 Subject: Migrate to JUnit 5 and unify used test API (#3138) --- subprojects/analysis-kotlin-descriptors/compiler/build.gradle.kts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'subprojects/analysis-kotlin-descriptors/compiler/build.gradle.kts') diff --git a/subprojects/analysis-kotlin-descriptors/compiler/build.gradle.kts b/subprojects/analysis-kotlin-descriptors/compiler/build.gradle.kts index 1b40027d..16f3f75d 100644 --- a/subprojects/analysis-kotlin-descriptors/compiler/build.gradle.kts +++ b/subprojects/analysis-kotlin-descriptors/compiler/build.gradle.kts @@ -11,10 +11,9 @@ dependencies { implementation(projects.subprojects.analysisMarkdownJb) implementation(projects.subprojects.analysisJavaPsi) + testImplementation(kotlin("test")) testImplementation(projects.core.contentMatcherTestUtils) testImplementation(projects.core.testApi) - testImplementation(platform(libs.junit.bom)) - testImplementation(libs.junit.jupiter) // TODO [beresnev] get rid of it compileOnly(libs.kotlinx.coroutines.core) -- cgit