From fd9d6af30049117b3e009e5d90cd4cce92085339 Mon Sep 17 00:00:00 2001 From: Zenichi Amano <2736571+crow-misia@users.noreply.github.com> Date: Sun, 4 Feb 2024 00:50:52 +0900 Subject: [PATCH] =?UTF-8?q?build(deps):=20test=20runner/rules=E3=81=8C?= =?UTF-8?q?=E4=BE=9D=E5=AD=98=E3=83=A9=E3=82=A4=E3=83=96=E3=83=A9=E3=83=AA?= =?UTF-8?q?=E5=AE=9A=E7=BE=A9=E3=81=8B=E3=82=89=E6=BC=8F=E3=82=8C=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Zenichi Amano <2736571+crow-misia@users.noreply.github.com> --- core/build.gradle.kts | 2 ++ gradle/libs.versions.toml | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 426cf59..c782b0f 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -153,6 +153,8 @@ dependencies { testImplementation(libs.mockk) androidTestImplementation(libs.kotlinx.coroutines.test) + androidTestImplementation(libs.androidx.test.runner) + androidTestImplementation(libs.androidx.test.rules) androidTestImplementation(libs.androidx.test.ext.junit.ktx) androidTestImplementation(libs.androidx.test.ext.truth) androidTestImplementation(libs.androidx.test.espresso.core) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index e085ccc..4c3d214 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -24,6 +24,10 @@ androidx-test-ext-truth = "1.6.0-alpha03" androidx-test-espresso = "3.6.0-alpha03" +androidx-test-runner = "1.6.0-alpha06" + +androidx-test-rules = "1.6.0-alpha03" + kotest = "5.8.0" mockk = "1.13.9" @@ -52,6 +56,10 @@ androidx-test-ext-truth = { group = "androidx.test.ext", name = "truth", version androidx-test-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "androidx-test-espresso" } +androidx-test-runner = { group = "androidx.test", name = "runner", version.ref = "androidx-test-runner" } + +androidx-test-rules = { group = "androidx.test", name = "rules", version.ref = "androidx-test-rules" } + kotest-runner-junit5 = { group = "io.kotest", name = "kotest-runner-junit5", version.ref = "kotest" } kotest-assertions-core = { group = "io.kotest", name = "kotest-assertions-core", version.ref = "kotest" }